From f8089dd56ae2eef4af37c9da3673321b7537cc47 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Jul 02 2021 14:04:23 +0000 Subject: Remove getfedora.org, moved to https://pagure.io/fedora-web/websites/ --- diff --git a/getfedora.org/.zanata-cache/etag-cache.xml b/getfedora.org/.zanata-cache/etag-cache.xml deleted file mode 100644 index 0a6e78b..0000000 --- a/getfedora.org/.zanata-cache/etag-cache.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getfedora.org/Makefile b/getfedora.org/Makefile deleted file mode 100644 index bf621ad..0000000 --- a/getfedora.org/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -include ../Makefile.in - -# moved (see fedora-web/websites) -pullpos: ; - -$(LANGUAGES): % : | static rss-cache po/%.mo data/templates/translations.html - $(PYTHON) $(BUILDDIR)/build.py -o out -i data/content -l $@ -p po -b $(BASEPATH) - -all:: -# FIXME: This is being provided statically for F25 GA, -# but must be fixed by F26 Alpha -# q.v.: -# https://pagure.io/fedora-websites/issue/54 -# https://pagure.io/fedora-qa/fedfind/issue/2 - mv out/static/releases.json out/releases.json diff --git a/getfedora.org/build/atomic_vars.py b/getfedora.org/build/atomic_vars.py deleted file mode 100755 index 887d522..0000000 --- a/getfedora.org/build/atomic_vars.py +++ /dev/null @@ -1,234 +0,0 @@ -#!/usr/bin/python -""" Return the results of the atomic release engine from datagrepper. - -For the Two-Week Atomic Change (F23) - -Deps: $ sudo dnf install python-requests - -Author: Ralph Bean -License: LGPLv2+ -""" - -from __future__ import print_function - -import collections -import functools -import json -import logging -import os -import sys -import socket - -from datetime import datetime, timedelta - -import dateutil.relativedelta -import dateutil.tz -import dogpile.cache -import requests - -log = logging.getLogger("atomic_vars") - -try: - sys.path.append('../build.d') - - import globalvar -except ImportError: - log.error("Unable to import globalvar") - sys.exit(1) - -base_url = 'https://apps.fedoraproject.org/datagrepper/raw' -topic = "org.fedoraproject.prod.releng.atomic.twoweek.complete" - -UTC = dateutil.tz.tzutc() - -session = requests.session() - -cache = dogpile.cache.make_region().configure( - "dogpile.cache.dbm", - # 'make clean' does not remove this cache, but we let the values expire - # once every this many seconds (once a day) - expiration_time=86400, - arguments={ - "filename": os.path.join(os.getcwd(), 'build/atomic.cache') - }, -) - -# Are we running in fedora-infra or on someone's laptop? -hostname = socket.gethostname() -if '.phx2.fedoraproject.org' in hostname: - DL_URL_PREFIX = 'http://dl.phx2.fedoraproject.org' -else: - DL_URL_PREFIX = 'https://dl.fedoraproject.org' - -download_fpo = 'https://download.fedoraproject.org' - - -def get_page(page, pages): - """ Retrieve the JSON for a particular page of datagrepper results """ - log.debug("Getting page %i of %s", page, pages) - params = dict( - delta=2419200, # 4 weeks in seconds - topic=topic, - page=page, - rows_per_page=1, - ) - response = session.get(base_url, params=params) - if not bool(response): - raise IOError("Failed to talk to %r %r" % (response.url, response)) - return response.json() - - -# A list of fedmsg messages ideas that were produced erroneously. -# We don't want to use them, so ban them from our results. -blacklist = [ - '2016-dd05c4b7-958b-439f-90d6-e5ca0af2197c', - '2016-b2a2eb00-acef-4a1f-bc6a-ad5aa9d81eee', - '2016-0307f681-1eae-4aeb-9126-8a43b7a378e2', -] - -def get_messages(target): - """ Generator that yields messages from datagrepper """ - - # Get the first page - data = get_page(1, 'unknown') - for message in data['raw_messages']: - if message['msg_id'] in blacklist: - continue - if target in json.dumps(message): - yield message - - more = functools.partial(get_page, pages=data['pages']) - - # Get all subsequent pages (if there are any...) - for page in range(1, data['pages']): - data = more(page + 1) - - for message in data['raw_messages']: - if message['msg_id'] in blacklist: - continue - if target in json.dumps(message): - yield message - - -def make_templates(curr_atomic_id, next_atomic_id): - return [ - # As things stand now, we only do two-week-atomic stuff for the current - # stable release. - (curr_atomic_id, '', ''), - - # If we ever move to doing pre-release versions as well, just uncomment - # the following line and it should all work. We leave it commented out - # now because querying datagrepper for pre-release results that are not - # there is much more slow than querying for something that exists. - #(next_atomic_id, 'pre_atomic_', 'pre_'), - ] - - -# We cache this guy on disk so we don't hit datagrepper over and over. -@cache.cache_on_arguments() -def collect(curr_atomic_id, next_atomic_id): - results = collections.defaultdict(dict) - - # This is the information needed to provide "latest" download targets that - # redirect to the actual mirrormanager url via htpasswd file - results['release']['redir_map'] = collections.defaultdict(dict) - - for idx, composedate_prefix, iso_size_prefix in make_templates(curr_atomic_id, next_atomic_id): - - log.info("Looking for latest atomic release for %s" % idx) - # Get the *latest* atomic release information. - messages = get_messages('-%s-' % idx) - try: - message = messages.next() - except StopIteration: - log.warn("Couldn't find any two-week-atomic content for %r" % idx) - continue - - # Parse the composedate out of the image_name - image_name = message['msg']['x86_64']['atomic_qcow2']['image_name'] - composedate = '.'.join(image_name.split('-')[-1].split('.')[:-2]) - log.info(" Found composedate: %s" % composedate) - results['release'][composedate_prefix + 'atomic_composedate'] = composedate - - # Save the timestamp so we can compute the age later, off-cache. - results['release'][composedate_prefix + 'atomic_ts'] = message['timestamp'] - - # Get the sizes of the isos in megabytes. To do this, we need... - # A mapping between what the release-engine tool calls each artifact, - # and what we call them. - mapping = { - 'atomic_qcow2': 'atomic_qcow2_cloud', - 'atomic_raw': 'atomic_raw_cloud', - 'atomic_vagrant_libvirt': 'atomic_libvag_cloud', - 'atomic_vagrant_virtualbox': 'atomic_VBvag_cloud', - 'atomic_dvd_ostree': 'atomic_dvd_iso', - } - - for arch, items in message['msg'].items(): - for key, entry in items.items(): - # There are some other keys in there we don't care about. - if not key.startswith('atomic_'): - continue - - url = entry['image_url'] - download_url = entry['image_url'] - if not url.startswith('http'): - url = DL_URL_PREFIX + url - download_url = download_fpo + entry['image_url'] - - length = int(entry['size']) / (1024 * 1024) - # Provide the download URL - url_key = mapping[key] + "_url" - results['release'][url_key] = download_url - - # Provide the redirect rule mapping - img_filename = download_url.split('/')[-1] - results['release']['redir_map'][key+'_'+arch] = {} - results['release']['redir_map'][key+'_'+arch]['redirect'] = download_url - results['release']['redir_map'][key+'_'+arch]['filename'] = img_filename - results['release']['redir_map'][key+'_'+arch]['iso_size'] = str(length) - - # Figure out which of our vars we're going to set, and set it - iso_size_key = iso_size_prefix + mapping[key] - results['iso_size'][iso_size_key] = str(length) - results['release']['redir_map']['atomic_images_checksum_' + arch] = {} - results['release']['redir_map']['atomic_images_checksum_' + arch]['redirect']=\ - download_fpo + '/pub/alt/atomic/stable/Fedora-Atomic-' + idx + '-' + composedate +\ - '/AtomicHost/' + arch + '/images/Fedora-AtomicHost-' + idx + '-' + composedate + '-' + arch + '-CHECKSUM' - results['release']['redir_map']['atomic_images_checksum_' + arch]['filename'] = \ - 'Fedora-AtomicHost-' + idx + '-' + composedate + '-' + arch + '-CHECKSUM' - - results['release']['redir_map']['atomic_dvd_ostree_checksum_' + arch] = {} - results['release']['redir_map']['atomic_dvd_ostree_checksum_' + arch]['redirect'] = \ - download_fpo + '/pub/alt/atomic/stable/Fedora-Atomic-' + idx + '-' + composedate + \ - '/AtomicHost/' + arch + '/iso/Fedora-AtomicHost-' + idx + '-' + composedate + '-' + arch + '-CHECKSUM' - results['release']['redir_map']['atomic_dvd_ostree_checksum_' + arch]['filename'] = \ - 'Fedora-AtomicHost-' + idx + '-' + composedate + '-' + arch + '-CHECKSUM' - - return results - - -# Note, this is *not* cached, since we need to update it frequently. -def update_age(release): - """ Is it old and stale? - - We aim to produce new atomic releases every two weeks at minimum. If we're - older than two weeks, we should put up a warning on the websites. Here we - just compute a flag that gets checked in the template. If this latest - release if younger than two weeks, call it "fresh". If it is older than - two weeks, it is no longer fresh. - http://taiga.cloud.fedoraproject.org/project/acarter-fedora-docker-atomic-tooling/us/31 - """ - - results = collections.defaultdict(dict) - templates = make_templates(release['curr_atomic_id'], release['next_atomic_id']) - for idx, composedate_prefix, iso_size_prefix in templates: - two_weeks_ago = datetime.now(UTC) - timedelta(days=14) - timestamp = release[composedate_prefix + 'atomic_ts'] - latest = datetime.fromtimestamp(timestamp, UTC) - freshness = bool(latest >= two_weeks_ago) - relative_delta = datetime.now(UTC) - latest - casual_delta = relative_delta.days - results['release'][composedate_prefix + 'atomic_freshness'] = freshness - results['release'][composedate_prefix + 'atomic_age'] = casual_delta - return results diff --git a/getfedora.org/build/cloud.py b/getfedora.org/build/cloud.py deleted file mode 100644 index 4f5be43..0000000 --- a/getfedora.org/build/cloud.py +++ /dev/null @@ -1,177 +0,0 @@ -#!/bin/python -# This file is used to generate the "out/static/js/cloud_ec2.js" file used the get-fedora-options#cloud tab -# You should only edit -# - the bellow dictionnary containing the AMI ID (get them on the wiki) -# - the python list ec2_fXX_regions -# - the template call at the end of file near "noscript" and "if JS enabled" (data/template/) - -import os - -OUTPUT = 'out/static/js/cloud_ec2.js' - -# Returns a sorted list of unique available regions from the array -def sorted_region(arr): - list = [] - for i in arr: - list.append(i['region']) - return(sorted(set(list), key=lambda item: (int(item.partition(' ')[0]) if item[0].isdigit() else float('inf'), item))) - -# Generated using the following: -# :%s#^\(ami-[0-9a-z]*\) : \([a-zA-Z0-9-]*\) image for \([xi].*\)#{'region':'\2', 'arch':'\3', 'store':'\EBS-Backed', 'id': '\1'},#g -# :%s/us-east-1/US East (Northern Virginia)/g -# :%s/us-west-1/US West (Northern California)/g -# :%s/us-west-2/US West (Oregon)/g -# :%s/eu-west-1/EU (Ireland)/g -# :%s/ap-southeast-1/Asia Pacific (Singapore)/g -# :%s/ap-southeast-2/Asia Pacific (Sydney)/g -# :%s/ap-northeast-1/Asia Pacific (Tokyo)/g -# :%s/sa-east-1/South America (Sao Paulo)/g - -# Get the list at: https://dl.fedoraproject.org/pub/alt/stage/20-Beta-RC2/Images/x86_64/ -ec2_f21_Alpha_Base = [ - {'region':'US East (Northern Virginia)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-20268848'}, -# {'region':'US East (Northern Virginia)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-8b4219e2'}, - {'region':'Asia Pacific (Singapore)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-820f2bd0'}, -# {'region':'Asia Pacific (Singapore)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-0eb2e75c'}, - {'region':'Asia Pacific (Sydney)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-7b6c0f41'}, -# {'region':'Asia Pacific (Sydney)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-db63ffe1'}, - {'region':'Asia Pacific (Tokyo)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-cf644bce'}, -# {'region':'Asia Pacific (Tokyo)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-e15135e0'}, - {'region':'US West (Northern California)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-b58b82f0'}, -# {'region':'US West (Northern California)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-00d0e645'}, - {'region':'US West (Oregon)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-af57179f'}, -# {'region':'US West (Oregon)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-48ca5178'}, - {'region':'EU (Ireland)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-bac760cd'}, -# {'region':'EU (Ireland)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-897b99fe'}, - {'region':'South America (Sao Paulo)', 'arch':'x86_64', 'store':'EBS-Backed', 'id':'ami-ab9f35b6'} -# {'region':'South America (Sao Paulo)', 'arch':'i386', 'store':'EBS-Backed', 'id':'ami-4b5cfa56'} -] - -ec2_f21_Alpha_Atomic = [ - {'region':'Asia Pacific (Tokyo)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-ebfe80ea'}, - {'region':'Asia Pacific (Singapore)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-deeebe8c'}, - {'region':'Asia Pacific (Sydney)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-27a1391d'}, - {'region':'EU (Ireland)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-29a2595e'}, - {'region':'South America (Sao Paulo)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-8145e79c'}, - {'region':'US East (Northern Virginia)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-f525389c'}, - {'region':'US West (Northern California)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-46f3ca03'}, - {'region':'US West (Oregon)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-9682e9a6'} -] - -ec2_f21_Base = [ - {'region':'Asia Pacific (Tokyo)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-9583fd94'}, - {'region':'Asia Pacific (Singapore)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-6ceebe3e'}, - {'region':'Asia Pacific (Sydney)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-eba038d1'}, - {'region':'EU (Ireland)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-a5ad56d2'}, - {'region':'South America (Sao Paulo)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-2345e73e'}, - {'region':'US East (Northern Virginia)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-21362b48'}, - {'region':'US West (Northern California)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-f8f1c8bd'}, - {'region':'US West (Oregon)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-cc8de6fc'}, - {'region':'Asia Pacific (Tokyo)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-db83fdda'}, - {'region':'Asia Pacific (Singapore)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-30eebe62'}, - {'region':'Asia Pacific (Sydney)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-d9a038e3'}, - {'region':'EU (Ireland)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-0bac577c'}, - {'region':'South America (Sao Paulo)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-4b45e756'}, - {'region':'US East (Northern Virginia)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-81302de8'}, - {'region':'US West (Northern California)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-a0f1c8e5'}, - {'region':'US West (Oregon)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-768ce746'} -] - -ec2_f21_Atomic = [ - {'region':'Asia Pacific (Tokyo)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-5bff815a'}, - {'region':'Asia Pacific (Singapore)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-e2eebeb0'}, - {'region':'Asia Pacific (Sydney)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-7fa13945'}, - {'region':'EU (Ireland)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-e7a25990'}, - {'region':'South America (Sao Paulo)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-ad45e7b0'}, - {'region':'US East (Northern Virginia)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-812439e8'}, - {'region':'US West (Northern California)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-1cf3ca59'}, - {'region':'US West (Oregon)', 'arch':'i386', 'store':'BS-Backed', 'id':'ami-e882e9d8'}, - {'region':'Asia Pacific (Tokyo)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-ebfe80ea'}, - {'region':'Asia Pacific (Singapore)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-deeebe8c'}, - {'region':'Asia Pacific (Sydney)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-27a1391d'}, - {'region':'EU (Ireland)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-29a2595e'}, - {'region':'South America (Sao Paulo)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-8145e79c'}, - {'region':'US East (Northern Virginia)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-f525389c'}, - {'region':'US West (Northern California)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-46f3ca03'}, - {'region':'US West (Oregon)', 'arch':'x86_64', 'store':'BS-Backed', 'id':'ami-9682e9a6'} -] - -# The idea is to get something similar to http://jsfiddle.net/shaiton/wChSv/5/ -# But we have to generate it in order to have to maintain only one list of AMI ID -# Simply read the output at "out/static/js/cloud_ec2.js" -def gen_js(*args): - js="// File generated from cloud-tab.html.\n" - js+="addEventListener('DOMContentLoaded', function(){\n" - - for release in args: - js+="\tvar element = document.getElementById('cloud_options_" + release[0] + "');\n" - js+="\tif (element != null)\n" - js+="\t\telement.style.visibility='visible';\n" - js+="\telement = document.getElementById('amihref_" + release[0] + "');\n" - js+="\tif (element != null)\n" - js+="\t\telement.style.visibility='hidden';\n" - js+="});\n" - - js+="\nfunction getval() {\n" - js+="\t// We get the number of regions, and define a two dimensional array (region,arch) to store the AMI ID\n" - js+="\t// We limit to i > 1 as we don't need the first null entry'\n" - js+="\t// For each release providen. '\n" - js+="\tvar region_name = {\n" - js+="\t 'Asia Pacific (Tokyo)': 'ap-northeast-1',\n" - js+="\t 'Asia Pacific (Singapore)': 'ap-southeast-1',\n" - js+="\t 'Asia Pacific (Sydney)': 'ap-southeast-2',\n" - js+="\t 'EU (Ireland)': 'eu-west-1',\n" - js+="\t 'South America (Sao Paulo)': 'sa-east-1',\n" - js+="\t 'US East (Northern Virginia)': 'us-east-1',\n" - js+="\t 'US West (Northern California)': 'us-west-1',\n" - js+="\t 'US West (Oregon)': 'us-west-2'\n" - js+="\t}\n" - for release in args: - js+="\n\tvar form_" + release[0] + " = document.forms['cloud_options_" + release[0] + "'];\n" - js+="\n\tvar is_form_" + release[0] + " = typeof form_" + release[0] + ";\n" - js+="\tif (is_form_" + release[0] + " != 'undefined' && form_" + release[0] + ".region_" + release[0] + ".value != 'null') {\n" - js+="\t\tfor (var i = form_" + release[0] + ".region_" + release[0] + ".options.length, id_" + release[0] + " = new Array(form_" + release[0] + ".region_" + release[0] + ".options.length); i > 1; i--)\n" - js+="\t\t\tid_" + release[0] + "[form_" + release[0] + ".region_" + release[0] + ".options[i - 1].value] = new Array(2);\n\n" - - for img in release[1]: - js+="\t\tid_" + release[0] + "['" + img['region'] + "']['" + img['arch'] + "'] = '" + img['id'] + "';\n" - js+="\t}\n" - for release in args: - js+="\n\tif (is_form_" + release[0] + " != 'undefined') {\n" - js+="\n\t\tif (form_" + release[0] + ".region_" + release[0] + ".value != 'null') {\n" - js+="\t\t\tvar ami_id = id_" + release[0] + "[form_" + release[0] + ".region_" + release[0] + ".value][form_" + release[0] + ".arch_" + release[0] + ".value];\n" - js+="\t\t\tvar url = 'https://console.aws.amazon.com/ec2/v2/home?region=' + region_name[form_" + release[0] + ".region_" + release[0] + ".value] + '#LaunchInstanceWizard:ami=' + ami_id;\n" - js+="\t\t\tdocument.getElementById('amihref_" + release[0] + "').href = url;\n" - js+="\t\t\tdocument.getElementById('amihref_" + release[0] + "').style.visibility='visible';\n" - js+="\t\t\tdocument.getElementById('label_" + release[0] + "').innerHTML = ami_id;\n" - js+="\t\t} else {\n" - js+="\t\t\tdocument.getElementById('amihref_" + release[0] + "').href = '';\n" - js+="\t\t\tdocument.getElementById('amihref_" + release[0] + "').style.visibility='hidden';\n" - js+="\t\t\tdocument.getElementById('label_" + release[0] + "').innerHTML = '';\n" - js+="\t\t}\n" - js+="\t}\n" - js+="}\n" - f = open(OUTPUT, 'w+') - f.write(js) - f.close() - -def get_amis(): - ec2_f21_Alpha_Base_regions = sorted_region(ec2_f21_Alpha_Base) - ec2_f21_Alpha_Atomic_regions = sorted_region(ec2_f21_Alpha_Atomic) - ec2_f21_Base_regions = sorted_region(ec2_f21_Base) - ec2_f21_Atomic_regions = sorted_region(ec2_f21_Atomic) - - if not os.path.exists(OUTPUT): - gen_js( - ['21_Base',ec2_f21_Base], - ['21_Atomic',ec2_f21_Atomic], - ['21_Alpha_Base',ec2_f21_Alpha_Base], - ['21_Alpha_Atomic',ec2_f21_Alpha_Atomic]) - - return { - 'f21_Base':ec2_f21_Base, 'f21_Base_regions':ec2_f21_Base_regions, - 'f21_Atomic':ec2_f21_Atomic, 'f21_Atomic_regions':ec2_f21_Atomic_regions, - 'f21_Alpha_Base':ec2_f21_Alpha_Base, 'f21_Alpha_Base_regions':ec2_f21_Alpha_Base_regions, - 'f21_Alpha_Atomic':ec2_f21_Alpha_Atomic, 'f21_Alpha_Atomic_regions':ec2_f21_Alpha_Atomic_regions - } - diff --git a/getfedora.org/build/fedimg_vars.py b/getfedora.org/build/fedimg_vars.py deleted file mode 100755 index bfe92f6..0000000 --- a/getfedora.org/build/fedimg_vars.py +++ /dev/null @@ -1,111 +0,0 @@ -#!/usr/bin/python -""" Return the AMIs uploaded by fedimg for a given set of release vars. - -Search datagrepper to find the results. - -Deps: $ sudo dnf install python-requests - -Author: Ralph Bean -License: LGPLv2+ -""" - -from __future__ import print_function - -import collections -import functools -from datetime import datetime, timedelta -from hashlib import sha1 -import logging -import shelve -import os - -from fedimg_vars_lib import get_messages, sanity_check, mocked_fedimg, check_permissions - -logging.basicConfig(level=logging.INFO) - -log = logging.getLogger('fedimg_vars') - -cachefile = '/tmp/fedora_websites_fedimg_getfedora_%s.cache' - - -# We cache this guy on disk for 500s -def collect(release): - filename = cachefile % (sha1(str(release)).hexdigest()) - shelf = shelve.open(filename) - check_permissions(filename=filename) - if shelf.get('timestamp') and shelf.get('timestamp') > (datetime.utcnow() - timedelta(hours=1)): - log.info('Retrieving release data from shelf') - toreturn = shelf['collected'] - shelf.close() - return toreturn - - results = collections.defaultdict(dict) - - # 1 - transform release vars into an image name we want to query for - templates = [ - # The F22 released AMIs uploads didn't appear to go through fedimg, so - # we can't use this scheme for them. Stuff for F23 should all go that - # route though, so we can hopefully switch over soon. - #("Fedora-Cloud-Base-{curr_cloud_AMI_id}-{cloud_AMI_composedate}.n.0.x86_64", { - # 'HVM_base_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'standard', - # 'GP2_HVM_base_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'gp2', - # 'PV_base_AMI': lambda e: e.get('virt_type') == 'paravirtual' and e.get('vol_type') == 'standard', - # 'GP2_PV_base_AMI': lambda e: e.get('virt_type') == 'paravirtual' and e.get('vol_type') == 'gp2', - #}), - ("Fedora-AtomicHost-{curr_atomic_id}-{atomic_composedate}.x86_64", { - 'HVM_atomic_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'standard', - 'GP2_HVM_atomic_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'gp2', - }), - ("Fedora-AtomicHost-{curr_atomic_id}-{atomic_composedate}.aarch64", { - 'AARCH64_GP2_HVM_atomic_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'gp2', - }), - #("Fedora-Cloud-Base-{next_cloud_AMI_id}_{curr_cloud_AMI_state}-{RC_pre_gold}.x86_64", { - # 'pre_HVM_base_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'standard', - # 'pre_GP2_HVM_base_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'gp2', - # 'pre_PV_base_AMI': lambda e: e.get('virt_type') == 'paravirtual' and e.get('vol_type') == 'standard', - # 'pre_GP2_PV_base_AMI': lambda e: e.get('virt_type') == 'paravirtual' and e.get('vol_type') == 'gp2', - #}), - #("Fedora-Cloud-Atomic-{next_cloud_AMI_id}_{curr_cloud_AMI_state}-{manual_pre_cloud_AMI_atomic_composedate}.x86_64", { - # 'pre_HVM_atomic_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'standard', - # 'pre_GP2_HVM_atomic_AMI': lambda e: e.get('virt_type') == 'hvm' and e.get('vol_type') == 'gp2', - #}), - ] - - if not os.path.exists('/var/fedora_websites_live_fedimg'): - return mocked_fedimg(templates) - - for template, buckets in templates: - # 2 - Build an intermediary dict - intermediary = collections.OrderedDict() - target = template.format(**release) - log.info("Looking for AMIs for %s" % target) - messages = get_messages(target) - for message in messages: - key = message['msg']['image_name'] - if not key in intermediary: - intermediary[key] = [] - intermediary[key].append(message['msg']) - - if not intermediary: - log.warn("No AMIs found for %s" % target) - continue - - # What would this even mean? - assert len(intermediary) < 2, "Impossible. Got more than one target." - - uploads = intermediary[target] - - # 3- transform intermediary representation into results - for name, matches in buckets.items(): - for upload in uploads: - if matches(upload['extra']): - ami = upload['extra']['id'] - # The region looks like "EC2 (REGION)", so we strip stuff. - region = upload['destination'] - results[name][region] = ami - - shelf['timestamp'] = datetime.utcnow() - shelf['collected'] = results - shelf.close() - - return results diff --git a/getfedora.org/build/fedimg_vars_lib.py b/getfedora.org/build/fedimg_vars_lib.py deleted file mode 120000 index 01e3ba3..0000000 --- a/getfedora.org/build/fedimg_vars_lib.py +++ /dev/null @@ -1 +0,0 @@ -../../tools/fedimg_vars_lib.py \ No newline at end of file diff --git a/getfedora.org/build/release_schedule.py b/getfedora.org/build/release_schedule.py deleted file mode 100755 index 34849fb..0000000 --- a/getfedora.org/build/release_schedule.py +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# This script will parse the f-XX-key-milestones.tjx file and retrieve three relevant -# dates: Alpha Release Public Availability, Beta Release Public Availability and Final Release Public Availability. - - -import urllib2 -from urllib2 import HTTPError -from urllib2 import URLError -from StringIO import StringIO -import gzip -from lxml import etree -import cPickle, os - -def parse(cache, r): - root = etree.fromstring(cache) - date={} - - beta_release = root.xpath('//task[@id="f' + r + '.TestingPhase.beta.beta_drop"]/taskScenario/start/@humanReadable') - final_release = root.xpath('//task[@id="f' + r + '.LaunchPhase.final"]/taskScenario/start/@humanReadable') - - - try: - date[r] = {'beta':beta_release[0], 'final':final_release[0]} - return date - except IndexError: - return {} - - -def schedule(release): - date={} - ec = None - cachefile = os.path.join(os.getcwd(), 'build/schedule.cache') - - - if os.path.isfile(cachefile): - f = open(cachefile) - try: - ec = cPickle.load(f) - except: - pass - f.close() - - if ec is not None: - date = parse(ec, release) - if release in date: - return date - - # We need to generate the cache! - # Download the schedule - try: - u = urllib2.urlopen('http://fedorapeople.org/groups/schedule/f-' + release + '/f-' + release + '-key-milestones.tjx') - except HTTPError: - date[release] = {'beta':'2014-jan-01', 'final':'2014-jan-01'} - return date - - except URLError: - date[release] = {'beta':'2014-jan-01', 'final':'2014-jan-01'} - return date - - # Release is already present in date if we got HTTPError - if not release in date: - buf = StringIO(u.read()) - f = gzip.GzipFile(fileobj=buf) - data = f.read().strip() # looks like there is a leading space in the file - - f = open(cachefile, 'w') - cPickle.dump(data, f) - f.close() - - return parse(data, release) diff --git a/getfedora.org/build/releases-json.py b/getfedora.org/build/releases-json.py deleted file mode 100644 index 72b7428..0000000 --- a/getfedora.org/build/releases-json.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python -import fedfind.release -import fedfind.helpers -import json -output = [] -def hashify(version, milestone, arch, link, variant, subvariant): - return { 'version': version - , 'arch': arch - , 'link': link - , 'variant': variant - , 'subvariant': subvariant - } -releases_to_report = [ - fedfind.release.get_release(30), - fedfind.release.get_release(29), - fedfind.release.get_release(28) - ] -for rel in releases_to_report: - for img in rel.all_images: - location = img['url'] - h = hashify( - rel.version, - rel.milestone, - img['arch'], - location, - img['variant'], - img['subvariant']) - if 'checksums' in img and 'sha256' in img['checksums']: - h['sha256'] = str(img['checksums']['sha256']) - - if rel.version == "26": - h['releaseDate'] = '2017-07-11' - elif rel.version == "27" and img['variant'] != "Server": - h['releaseDate'] = '2017-11-14' - - if 'size' in img: - h['size'] = str(img['size']) - - output.append(h) -print json.dumps(output) diff --git a/getfedora.org/build/rss.py b/getfedora.org/build/rss.py deleted file mode 100644 index 0103e9b..0000000 --- a/getfedora.org/build/rss.py +++ /dev/null @@ -1,53 +0,0 @@ -import os -import cPickle -import feedparser -import socket -import sys - -def feedparse(url): - # TODO: Should the directory be hardcoded like this? - # Maybe use ConfigParser to get some stuff? - feeds = [{}] - cachefile = os.path.join(os.getcwd(), 'build/rss.cache') - if os.path.isfile(cachefile): - f = open(cachefile) - feeds = cPickle.load(f) - f.close() - - # We parse the list - for i in feeds: - feed_url = i - # and here the dictionary - for j in feed_url: - try: - if j["url"] == url: - return j["feed"] - except KeyError: - pass - - # Ok, the url was not in the cache, process it - main_feed = dict() - timeout = socket.getdefaulttimeout() - socket.setdefaulttimeout(3) - main_feed = feedparser.parse(url) - socket.setdefaulttimeout(timeout) - if len(main_feed['entries']) < 1: - print 'ERROR: ' + str(main_feed['bozo_exception']) - print 'Could not load ' + url - sys.exit(1) - entry = [{}] - for feed in main_feed["entries"]: - '''We only need to save the link, title and date of blog posts''' - if "updated" in feed: - entry.append({'link':feed["link"], 'title':feed["title"], 'date':feed["date"]}) - else: - entry.append({'link':feed["link"], 'title':feed["title"], 'date':""}) - url_entries = [{}] - url_entries.append({'url':url, 'feed':entry}) - feeds.append(url_entries) - - f = open(cachefile, 'w') - cPickle.dump(feeds, f) - f.close() - feed_url = dict() - return entry diff --git a/getfedora.org/data/content/atomic/download/download-cloud-splash.html b/getfedora.org/data/content/atomic/download/download-cloud-splash.html deleted file mode 100644 index de761ab..0000000 --- a/getfedora.org/data/content/atomic/download/download-cloud-splash.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - ${_('Download Fedora Atomic Host')} - - - - - -
-
-
-
-

${_('Thanks for Downloading Fedora!')}

-

${_('Your download should begin in a few seconds. If not, click the link below:')} -

-

-
-
-
-
-
-
-
-

${Markup(_('Verify your Download!'))}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the proper CHECKSUM file into the same directory as the image you downloaded and follow <a href="%s/%s/verify">these instructions</a>.') % (path, lang))}

-
- -
-
- - diff --git a/getfedora.org/data/content/atomic/download/index.html b/getfedora.org/data/content/atomic/download/index.html deleted file mode 100644 index 49f748c..0000000 --- a/getfedora.org/data/content/atomic/download/index.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - - ${_('Download Fedora Atomic')} - - - - - - - -
-
-
-
-

${Markup(_('Download Fedora %(rel)s Atomic Host')) % {'rel':global_variables.release['curr_atomic_id']}}

-

${_('Atomic Host is built every 2 weeks or so.')}

-

${Markup(_('The latest two week build did not meet our testing criteria. The images available are from over %(atomic_age)s days ago. Check the Project Atomic blog for updates and information about Atomic blocker bugs.') % global_variables.release)}

-

${Markup(_('These are the latest official Fedora Atomic Host images, produced %(atomic_age)s days ago.') % global_variables.release)}

-
-
-
-
- -
-
-
-
-
-

${_('Atomic Host Images')}

-

${_('Fedora Atomic Host is a leading edge base operating system following the Project Atomic model. It is designed around Kubernetes and containers. The images published here showcase that work. Note that the images have passed several levels of automated testing.')}

-
    -
  • ${Markup(_('<strong>Please test before using new versions in production.</strong> If you do discover a problem, the Atomic Host tools make it easy to flip back to an earlier release — and if that happens, please also help us by filing bugs or submitting fixes.'))}
  • -
  • ${Markup(_('<strong>Fedora Atomic Host images are updated roughly every two weeks,</strong> rather than on the main six-month Fedora cadence. Because development is moving quickly, only the latest major Fedora release is supported.'))}
  • -
  • ${Markup(_('<strong>Note that different Fedora Atomic Host media are subject to different levels of automatic testing.</strong> You can learn more about the Atomic project at <a href="%s">projectatomic.io</a>. <a href="%s">Click here</a> to see the current test status.') % ('https://www.projectatomic.io/', '//apps.fedoraproject.org/autocloud/compose?limit=10'))}
  • -
-
-
- - -
-
-

${_('Atomic Host Images for Amazon Public Cloud EC2')}

-

${_('The links below will provide you listings of available Atomic Host Hardware Virtual Machine (HVM) AMIs by region with buttons to launch them in your Amazon Web Services account. AMI IDs for usage with the AWS Console or command-line tools are also provided.')}

-
-
-
-
-
-
-
-
-
- ${_('GP2 Format HVM AMIs (x86_64)')} -
-
-
- - - -
- -
-
-
-
-
-
${_('Standard Format HVM AMIs (x86_64)')}
-
-
- - - -
- -
-
-
-
-
-
- ${_('GP2 Format HVM AMIs (aarch64)')} -
-
-
- - - -
- -
-
-
-
-
- - -
-
-

${_('Atomic Host Images for Vagrant')}

-

- ${Markup(_('Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by downloading the images from Fedora or using the vagrant tools to pull the images from <a href="%s">HashiCorp\'s Vagrant Cloud</a>.') % ('https://app.vagrantup.com/fedora'))} - ${Markup(_('For more information about running Vagrant on Fedora Workstation, see <a href="%s">our wiki page</a>.') % ('https://fedoraproject.org/wiki/Vagrant'))} -

-
-
-
-
-
-
-
-
-
${_('VirtualBox Image for Vagrant')}
- ${_('If you\'re using Vagrant on Mac OS X or Windows, this is likely the image you\'ll want to use.')} -
-
- - - -
-
-
-
-
-
-
${_('libvirt/KVM Image for Vagrant')}
- ${_('If you\'re using Vagrant on Fedora, this is the image you\'ll want to use.')} -
-
- - - -
-
-
-
-
-
-
${_('How to download using Vagrant tools')}
-
-
- - - -
- -
-
-
-
-
- - - -
-
-

${_('Atomic Host Images for Cloud Environments')}

-
-
-
-
-
-
-
-
-
${_('qcow2 Image')}
- ${Markup(_('Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use with OpenStack')) % {'rel':global_variables.release['curr_atomic_id']}} -
-
- - - -
- -
-
-
-
-
-
${_('Raw Image')}
- ${Markup(_('Fedora %(rel)s Cloud Atomic Host in a compressed raw image format')) % {'rel':global_variables.release['curr_atomic_id']}} -
-
- - - -
- -
-
-
-
-
- - - - -
-
-

${_('Atomic Host Images for Bare Metal')}

-
-
-
-
-
-
-
-
-
${_('ISO Image')}
- ${Markup(_('Fedora %(rel)s Cloud Atomic Host in an ISO image format')) % {'rel':global_variables.release['curr_atomic_id']}} -
-
- - - -
- -
-
-
-
-
- - -
- -
- -
-

${_('Other Downloads')}

- - -
- - -
-
${Markup(_('F%(rel)s %(state)s')) % {'rel':global_variables.release['next_atomic_id'], 'state':global_variables.release['curr_atomic_state']}}
-

${_('Try a pre-release')}

-

${_('We\'re working on our next release.')}
- ${Markup(_('Help us get F%(rel)s ready!')) % {'rel':global_variables.release['next_atomic_id']}}

-

${Markup(_('Download F%(rel)s %(state)s images')) % {'rel':global_variables.release['next_atomic_id'], 'state':global_variables.release['curr_atomic_state']}}

-

${_('How to test pre-releases')}

-
-
-
-
- -

${_('Resources')}

-

${Markup(_('<a href="https://www.projectatomic.io/docs/quickstart/"><strong>Project Atomic: Getting Started</strong></a>'))}

-

${_('Documentation on getting started using Project Atomic / Atomic Host.')}

-

${Markup(_('<a href="https://lists.projectatomic.io/mailman/listinfo/atomic"><strong>Project Atomic: Mailing List</strong></a>'))}

-

${Markup(_('Join the upstream mailing list at <a href="%s">atomic@projectatomic.io</a>.') % ('mailto:atomic@projectatomic.io'))}

-

${Markup(_('<a href="%s"><strong>Project Atomic: IRC Chat</strong></a>') % ('https://kiwiirc.com/client/irc.freenode.net'))}

-

${Markup(_('Join the Project Atomic channel <strong>#atomic</strong></a> on <strong>irc.freenode.org</strong></a>.'))}

- -
-
-
- - - diff --git a/getfedora.org/data/content/atomic/index.html b/getfedora.org/data/content/atomic/index.html deleted file mode 100644 index 3f054ee..0000000 --- a/getfedora.org/data/content/atomic/index.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - ${_('Get Fedora Atomic: the best platform for your containerized applications stack')} - - - - - - - -
-
-
-
- -
-
-
-

${Markup(_('“We chose to use Fedora Atomic as the base for our Navops Launch — Kubernetes cluster provisioning solution because our customers trust and already run Red Hat operating systems. We love the immutable aspect of Fedora Atomic which is perfect for containerized environments.”'))}

-
Cameron Brunner, ${_('Chief Architect, Navops by Univa')}
-
-
-
-
-
- - -
-
-
-
-

${_('Atomic Host')}

-

${_('Atomic Host from Project Atomic is a lightweight, immutable platform, designed with the sole purpose of running containerized applications.')}

-

${_('Fedora\'s version of Atomic Host uses the same package repositories as Fedora Server, and provides the latest versions of the Atomic.')}

-
-
-
-
- - -
-
-
-
-

${_('OStree Updates')}

-

${_('Atomically update your system from the latest upstream OStree. Make your servers identical, and easily roll back if there\'s an upgrade problem.')}

-
-
-
-
-

${_('Atomic CLI')}

-

${_('Manage Docker containers, system containers, Atomic Apps, and more using one convenient command-line tool.')}

-
-
-
-
- - -
-
-
-
-

${_('Optimized for Kubernetes and OpenShift')}

-

${_('Building a Kubernetes or Origin cluster to run your containerized applications? Run it on Fedora Atomic, which provides you the platform you need on a smaller, leaner OS.')}

-
-
- - - - -
-
- -
-
- -
-
-
-
- - - - - - - - - -
-

${_('Ready to give Fedora Atomic a try?')}

-

${_('Download now')}

-
- - - -
-
-
-
- -
-
- -
-
-
-
- - - - diff --git a/getfedora.org/data/content/atomic/prerelease/index.html b/getfedora.org/data/content/atomic/prerelease/index.html deleted file mode 100644 index 01d8c45..0000000 --- a/getfedora.org/data/content/atomic/prerelease/index.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - ${_('Download Fedora Atomic')} - - - - - - - -
-
-
-
-

${Markup(_('Download Fedora %(rel)s %(state)s Atomic Host')) % {'rel':global_variables.release['next_atomic_id'], 'state':global_variables.release['curr_atomic_state']}}

-

${_('Atomic Host is built every 2 weeks or so.')}

-

${Markup(_('The latest two week build did not meet our testing criteria. The images available are from over %(atomic_age)s days ago. Check the Project Atomic blog for updates and information about Atomic blocker bugs.') % global_variables.release)}

-

${Markup(_('These are the latest Fedora Atomic Host images, produced on %(manual_pre_atomic_date)s.') % global_variables.release)}

-
-
-
-
- -
-
-
-
-
-

${Markup(_('This is pre-release software and is supported by the <a href="%(team_url)s"> Atomic Working Group</a>. Please direct questions to their <a href="%(team_list)s">mailing list</a> or %(team_irc)s on freenode.') % {'team_url':'https://fedoraproject.org/wiki/Atomic_WG', 'team_list':'https://lists.projectatomic.io/mailman/listinfo/atomic-devel', 'team_irc':'#atomic'})} - ${Markup(_('All issues or bugs should be reported via the <a href="%s">Red Hat Bugzilla</a>. The Fedora Project makes no guarantees as to its suitability or usefulness.') % 'https://bugzilla.redhat.com/')} -

-
-
- - -
-
-

${_('Atomic Host Images for Amazon Public Cloud EC2')}

-

${_('The links below will provide you listings of available Atomic Host Hardware Virtual Machine (HVM) AMIs by region with buttons to launch them in your Amazon Web Services account. AMI IDs for usage with the AWS Console or command-line tools are also provided.')}

-
-
- -
-
-
${_('GP2 Format')}
-

${_('GP2 format AMIs use faster SSD storage; use these AMIs for speed, although note your storage costs will be more than standard.')}

- - - -
-
-
${_('Standard Format)')}
-

${_('Standard format AMIs are more suitable if you have infrequently accessed data and want to keep storage cost low.')}

- - - -
-
- - - - - - - -
-
-

${_('Atomic Host Images for Vagrant')}

-

${Markup(_('Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by downloading the images from Fedora or using the vagrant tools to pull the images from <a href="%s">HashiCorp\'s Atlas</a>.') % ('https://atlas.hashicorp.com/fedora'))}

- ${_('View Vagrant Downloads')} - -
-
-
-
- ${_('View Downloads using Vagrant tools')} - -
-
-
-
-

${Markup(_('For more information about running Vagrant on Fedora Workstation, see <a href="%s">our wiki page</a>.') % ('https://fedoraproject.org/wiki/Vagrant'))}

-
-
- - - -
-
-

${_('Atomic Host Images for Cloud Environments')}

-
-
- -
-
-
${_('qcow2 Image')}
-

${Markup(_('This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted image for use with OpenStack.')) % {'rel':global_variables.release['next_atomic_id'], 'state':global_variables.release['curr_atomic_state']}}

- ${_('Download')} -

${_('64-bit %sMB Qcow2 Image') % global_variables.iso_size['manual_pre_atomic_qcow2_cloud']}

-
-
-
${_('Raw Image')}
-

${Markup(_('This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image format. If you\'re not sure what to use, try this.')) % {'rel':global_variables.release['next_atomic_id'], 'state':global_variables.release['curr_atomic_state']}}

- ${_('Download')} -

${_('64-bit %sMB xz-Compressed Raw Image') % global_variables.iso_size['manual_pre_atomic_raw_cloud']}

-
-
- - - - - -

${_('Verify your Image')}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the proper CHECKSUM file into the same directory as the image you downloaded and follow <a href="%s/%s/verify">these instructions</a>.') % (path, lang))}

-
- -
- -
- -
- -
-

${_('Other Downloads')}

- -

${_('Resources')}

-

${Markup(_('<a href="https://www.projectatomic.io/docs/quickstart/"><strong>Project Atomic: Getting Started</strong></a>'))}

-

${_('Documentation on getting started using Project Atomic / Atomic Host.')}

-

${Markup(_('<a href="https://lists.projectatomic.io/mailman/listinfo/atomic"><strong>Project Atomic: Mailing List</strong></a>'))}

-

${Markup(_('Join the upstream mailing list at <a href="%s">atomic@projectatomic.io</a>.') % ('mailto:atomic@projectatomic.io'))}

-

${Markup(_('<a href="%s"><strong>Project Atomic: IRC Chat</strong></a>') % ('https://kiwiirc.com/client/irc.freenode.net'))}

-

${Markup(_('Join the Project Atomic channel <strong>#atomic</strong></a> on <strong>irc.freenode.org</strong></a>.'))}

- -
-
-
- - - diff --git a/getfedora.org/data/content/code-of-conduct.html b/getfedora.org/data/content/code-of-conduct.html deleted file mode 100644 index 367b9ed..0000000 --- a/getfedora.org/data/content/code-of-conduct.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - ${_('Fedora Code of Conduct')} - - - - - - - -
-
-
-

${_('Code of Conduct')}

-
-
-
- -
-
-
-

${_('The Fedora community is made up of a mixture of professionals and volunteers from all over the world, working on every aspect of the distribution from coding through to marketing. Diversity is one of our huge strengths, but it can also lead to communication issues and unhappiness. To that end, we have a few ground rules that we ask people to adhere to when they\'re using project resources.')}

-

${_('This isn\'t an exhaustive list of things that you can\'t do. Rather, take it in the spirit in which it\'s intended - a guide to make it easier to be excellent to each other.')}

-
    -
  • ${_('Be considerate. Your work will be used by other people, and you in turn will depend on the work of others. Any decision you take will affect users and colleagues, and you should take those consequences into account when making decisions.')}
  • -
  • ${_('Be respectful. Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It\'s important to remember that a community where people feel uncomfortable or threatened is not a productive one. Members of the Fedora community should be respectful when dealing with other contributors as well as with people outside the Fedora community and with users of Fedora.')}
  • -
-

${_('When we disagree, we try to understand why. Disagreements, both social and technical, happen all the time and Fedora is no exception. It is important that we resolve disagreements and differing views constructively.')}

-

${_('Remember that we\'re different. The strength of Fedora comes from its varied community, people from a wide range of backgrounds. Different people have different perspectives on issues. Being unable to understand why someone holds a viewpoint doesn\'t mean that they\'re wrong. Don\'t forget that it is human to err and blaming each other doesn\'t get us anywhere, rather offer to help resolving issues and to help learn from mistakes.')}

-
-
-
- - - diff --git a/getfedora.org/data/content/e/404.html b/getfedora.org/data/content/e/404.html deleted file mode 100644 index 7059af7..0000000 --- a/getfedora.org/data/content/e/404.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - ${Markup(_('Fedora Project - Page Not Found'))} - - - - - -
-
-

${Markup(_('Troubleshooting Ideas'))}

-
-
-
-

${Markup(_('Double-check the URL if you entered it manually. Did you copy it correctly?'))}

-
-
-

${Markup(_('Bad Link? Contact <a href="%s">the webmaster</a> and explain which link brought you here.') % 'mailto:webmaster@fedoraproject.org')}

-
-
-

${Markup(_('The page or file may have moved. Check the <a href="%(fpo)s">main site</a> or search our <a href="%(wiki)s">wiki</a>.') % {'fpo':'http://fedoraproject.org/', 'wiki':'https://fedoraproject.org/wiki/Fedora_Project_Wiki'} )}

-
-
-
- - - - diff --git a/getfedora.org/data/content/index.html b/getfedora.org/data/content/index.html deleted file mode 100644 index d017446..0000000 --- a/getfedora.org/data/content/index.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - ${_('Get Fedora: download our Linux-based OS for developer desktops, running containers, and more')} - - - - -
-
-
-
-

${_('Choose Freedom. Choose Fedora.')}

-

${Markup(_('Less setup, more innovation. Choose a flavor of Fedora<br /><br /> streamlined for your needs, and get to work right away.'))}

-
-
-
-
- - - - -
-
-
-
-

${Markup(_('<strong>Fedora %(rel)s %(state)s</strong> released! Test it in the Download section.')) % {'rel':global_variables.release['next_id'], 'state':global_variables.release['curr_state']}}

-
-
-
-
-
- -
-
-
-
-

${Markup(_('<strong>Fedora %(rel)s %(state)s</strong> released! Test it in the Download section.')) % {'rel':global_variables.release['next_id'], 'state':global_variables.release['curr_state']}}

-
-
-
-
-
- - - -
- - - -
-
- - -
-
-
-
- freedom -
-
- friends -
-
- features -
-
- first -
-
-
-
-
-

${_('Fedora is always free for anyone to use, modify, and distribute. It is built and used by people across the globe who work together as a community: the Fedora Project.')}

-
-
-
-
-
- -
- -
-
-
-
-

${_('Want more Fedora options?')}

-
-
-
-
- KDE - Xfce - Cinnamon -
-
-
-
- LXDE - MATE-Compiz - SoaS -
-
-
-
-

${Markup(_('The Fedora community also releases <a href="https://arm.fedoraproject.org/">ARM images</a>, alternate live Spins, and other variations of Fedora tailored to specific requirements. Browse them at the <a href="https://spins.fedoraproject.org/">Fedora Spins</a> or <a href="https://labs.fedoraproject.org/">Fedora Labs</a> website.'))}

-
-
-
-
-
-
-

${Markup(_('Be connected & informed.'))}

-
-
-
-
- Fedora Magazine -
-
-
-
-

${Markup(_('Want to get <a href="http://whatcanidoforfedora.org/">involved</a>? Find out what\'s happening in the <a href="http://communityblog.fedoraproject.org/">community</a>? Read up on the latest news and cool stuff at <a href="http://fedoramagazine.org/">Fedora Magazine</a>.'))}

-
-
-
-
- -
-
-
-
-

${_('Read the docs.')}

-
-
-
-
- Fedora Docs -
-
-
-
- -
-
-
-
-
-
-

${_('Get help.')}

-
-
-
-
- Ask Fedora -
-
-
-
-

${Markup(_('Need some help with Fedora? Check out <a href="%s">Ask Fedora</a>, where you can read archives of questions from other users, or ask your own question.') % ('https://ask.fedoraproject.org/'))}

-
-
-
-
- - - diff --git a/getfedora.org/data/content/keys/faq/index.html b/getfedora.org/data/content/keys/faq/index.html deleted file mode 100644 index db90027..0000000 --- a/getfedora.org/data/content/keys/faq/index.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - ${_('Package Signing FAQ')} - - - - - - - - -
-
-
-

${_('How does Fedora Project use GPG keys to sign packages?')}

-

${Markup(_('Each stable RPM package that is published by Fedora Project is signed with a GPG signature. By default, dnf and the graphical update tools will verify these signatures and refuse to install any packages that are not signed or have bad signatures. You should always verify the signature of a package before you install it. These signatures ensure that the packages you install are what was produced by the Fedora Project and have not been altered (accidentally or maliciously) by any mirror or website that is providing the packages.'))}

-

${Markup(_('Packages that can be downloaded from Koji build system do not contain signatures, so you should use them with caution. Similarly, bleeding-edge packages in Rawhide are not necessarily signed.'))}

-
-
- -
- -
-
-

${_('Importing keys')}

-

${Markup(_('The keys are included in the <strong>fedora-release</strong> package, you can find them in the <strong>/etc/pki/rpm-gpg</strong> directory. Please note that not all keys in this directory are used by Fedora project -- some are used for signing Red Hat Enterprise Linux packages or are no longer used at all. If you use Red Hat Enterprise Linux packages, see <a href="%s">https://www.redhat.com/security/team/key</a>. The keys used by Fedora are enabled in the dnf repository configuration, so you generally don\'t need to manually import them into the rpm database.') % ('https://www.redhat.com/security/team/key/'))}

-

${Markup(_('In addition to the fedora-release package and this web page, you can download the Fedora keys from a public key server, such as <a href="%s">keys.gnupg.net</a>.') % ('http://keys.gnupg.net/'))}

-

${Markup(_('For some repositories, such as repositories with stable and testing packages in default configuration, <strong>dnf</strong> is able to find a proper key for the repository and asks the user for confirmation before importing the key if the key is not already imported into the rpm database.'))}

-

${Markup(_('You can always import a key into RPM\'s database by hand using the following command:'))} -

rpm --import PUBKEY ...
-

-

${Markup(_('Refer to <strong>rpm</strong> manual for more information.'))}

-

${Markup(_('If you want to verify that the keys installed on your system match the keys listed here, you can use GnuPG to check that the fingerprint of the key matches. For example:'))} -

-$ gpg --quiet --with-fingerprint /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-11-primary
-...
-pub  4096R/D22E77F2 2009-01-19 Fedora (11) <fedora@fedoraproject.org>
-      Key fingerprint = AEE4 0C04 E345 60A7 1F04  3D7C 1DC5 C758 D22E 77F2
-

-
-
-
- - - diff --git a/getfedora.org/data/content/keys/index.html b/getfedora.org/data/content/keys/index.html deleted file mode 100644 index d40a89b..0000000 --- a/getfedora.org/data/content/keys/index.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - ${_('Package Signing Keys')} - - - - - - - - -
-
-

${_('Learn how Fedora protects you.')}

-

${_('Fedora makes use of GPG package signing to ensure that package integrity has not been compromised.')}

-

${Markup(_('Read the FAQ to learn more »'))}

-
-
- -
-
-
-

${_('Currently Used Keys')}

-
-
-
- -
-
- ${keys_for_release( - _('Fedora 30'), - [ - KeyInfo( - _('Primary or Secondary'), - '4096R/CFC659B9 2018-08-11', - 'F1D8 EC98 F241 AAF2 0DF6 9420 EF3C 111F CFC6 59B9', - ['Fedora (30) <fedora-30-primary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/CFC659B9.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 29'), - [ - KeyInfo( - _('Primary'), - '4096R/429476B4 2018-02-17', - '5A03 B4DD 8254 ECA0 2FDA 1637 A20A A56B 4294 76B4', - ['Fedora 29 (29) <fedora-29@fedoraproject.org>'], - None, - [('https://getfedora.org/static/429476B4.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 28'), - [ - KeyInfo( - _('Primary'), - '4096R/9DB62FB1 2017-08-14', - '128C F232 A937 1991 C8A6 5695 E08E 7E62 9DB6 2FB1', - ['Fedora 28 (28) <fedora-28@fedoraproject.org>'], - None, - [('https://getfedora.org/static/9DB62FB1.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('IOT'), - [ - KeyInfo( - _('2019'), - '4096R/DBBDCF7C 2018-11-13', - 'C2A3 FA9D C67F 68B9 8BB5 43F4 7BB9 0722 DBBD CF7C', - ['Fedora (iot 2019) <fedora-iot-2019@fedoraproject.org>'], - None, - [('https://getfedora.org/static/DBBDCF7C.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('EPEL 7'), - [ - KeyInfo( - _('Primary'), - '4096R/352C64E5 2013-12-16', - '91E9 7D7C 4A5E 96F1 7F3E 888F 6A2F AEA2 352C 64E5', - ['Fedora EPEL (7) <epel@fedoraproject.org>'], - None, - [('https://getfedora.org/static/352C64E5.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('EPEL 6'), - [ - KeyInfo( - _('Primary'), - '4096R/0608B895 2010-04-23', - '8C3B E96A F230 9184 DA5C 0DAE 3B49 DF2A 0608 B895', - ['EPEL (6) <epel@fedoraproject.org>'], - None, - [('https://getfedora.org/static/0608B895.txt', 'Fedora Project') - ]) - ])} -
-
-
-
-

${Markup(_('Looking for <a href="%s">obsolete keys</a>?') % ('obsolete.html'))}

-
-
- - diff --git a/getfedora.org/data/content/keys/obsolete.html b/getfedora.org/data/content/keys/obsolete.html deleted file mode 100644 index da77da9..0000000 --- a/getfedora.org/data/content/keys/obsolete.html +++ /dev/null @@ -1,516 +0,0 @@ - - - - - ${_('Obsolete Package Signing Keys')} - - - - - - - - -
-
-

${_('Learn how Fedora protects you.')}

-

${_('Fedora makes use of GPG package signing to ensure that package integrity has not been compromised.')}

-

${Markup(_('Read the FAQ to learn more »'))}

-
-
- -
-
-
-

${_('Obsolete and Unused Keys')}

-
-
-
- -
-
- ${keys_for_release( - _('Fedora <= 9'), - [ - KeyInfo( - _('Fedora GPG key'), - '1024D/4F2A6FD2 2003-10-27', - 'CAB4 4B99 6F27 744E 8612 7CDF B442 69D0 4F2A 6FD2', - ['Fedora Project <fedora@redhat.com>'], - '1024g/FB939E34 2003-10-27', - [], - Markup(_('Packages on installation media are signed with this key. The relevant dnf repositories are <strong>fedora</strong>, <strong>fedora-updates</strong> for Fedora 7-9, and <strong>core</strong> and <strong>core-updates</strong> for Fedora Core (Version 6 and earlier). See <a href="http://www.redhat.com/archives/fedora-announce-list/2008-August/msg00012.html">http://www.redhat.com/archives/fedora-announce-list/2008-August/msg00012.html</a> for information on why this key is obsolete.'))) - ])} - - ${keys_for_release( - _('Fedora >= 7 testing'), - [ - KeyInfo( - _('Fedora Test'), - '1024D/30C9ECF8 2003-10-27', - '3166 C14A AE72 30D9 3B7A B2F6 DA84 CBD4 30C9 ECF8', - ['Fedora Project (Test Software) <rawhide@redhat.com>'], - None, - [], - Markup(_('If you participate in testing of the packages, this is the key you will use to verify the testing packages. This key signs the packages that are in <strong>fedora-testing</strong> repository. See <a href="http://www.redhat.com/archives/fedora-announce-list/2008-August/msg00012.html">http://www.redhat.com/archives/fedora-announce-list/2008-August/msg00012.html</a> for information on why this key is obsolete.'))) - ])} - - ${keys_for_release( - _('Fedora 8-9'), - [ - KeyInfo( - _('Primary'), - '1024D/6DF2196F 2008-08-27', - '4FFF 1F04 010D EDCA E203 591D 62AE C3DC 6DF2 196F', - ['Fedora (8 and 9) <fedora@fedoraproject.org>'], - '4096g/9E198F60 2008-08-27', - [('https://getfedora.org/static/6DF2196F.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 8-9 testing'), - [ - KeyInfo( - _('Primary'), - '1024D/DF9B0AE9 2008-08-27', - 'C0E7 128E 9072 96CA AE31 78A2 8E69 3B4D DF9B 0AE9', - ['Fedora (8 and 9 testing) <fedora@fedoraproject.org>'], - '4096g/80E34F98 2008-08-27', - [('https://getfedora.org/static/DF9B0AE9.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('Fedora 10'), - [ - KeyInfo( - _('Primary'), - '1024D/4EBFC273 2008-08-27', - '61A8 ABE0 91FF 9FBB F4B0 7709 BF22 6FCC 4EBF C273', - ['Fedora (10) <fedora@fedoraproject.org>'], - '4096g/C1527A5F 2008-08-27', - [('https://getfedora.org/static/4EBFC273.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 10 testing'), - [ - KeyInfo( - _('Primary'), - '1024D/0B86274E 2008-08-27', - 'C561 3076 7487 7FDF A36D CA38 92A1 023D 0B86 274E', - ['Fedora (10 testing) <fedora@fedoraproject.org>'], - '4096g/7645A8D9 2008-08-27', - [('https://getfedora.org/static/0B86274E.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 11'), - [ - KeyInfo( - _('Primary'), - '4096R/D22E77F2 2009-01-19', - 'AEE4 0C04 E345 60A7 1F04 3D7C 1DC5 C758 D22E 77F2', - ['Fedora (11) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/D22E77F2.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 12'), - [ - KeyInfo( - _('Primary'), - '4096R/57BBCCBA 2009-07-29', - '6BF1 78D2 8A78 9C74 AC0D C63B 9D1C C348 57BB CCBA', - ['Fedora (12) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/57BBCCBA.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('Fedora 13'), - [ - KeyInfo( - _('Primary'), - '4096R/E8E40FDE 2010-01-19', - '8E5F 73FF 2A18 1765 4D35 8FCA 7EDC 6AD6 E8E4 0FDE', - ['Fedora (13) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/E8E40FDE.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 14'), - [ - KeyInfo( - _('Primary'), - '4096R/97A1071F 2010-07-23', - '235C 2936 B4B7 0E61 B373 A020 421C ADDB 97A1 071F', - ['Fedora (14) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/97A1071F.txt', 'Fedora Project') - ]), - KeyInfo( - _('s390x'), - '1024D/FDB36B03 2010-12-23', - 'CAF6 47A6 9736 3AB6 D91F 68DF 3E72 9CA7 FDB3 6B03', - ['Fedora (14-s390x) <fedora@fedoraproject.org>'], - '2048g/E363096B 2010-12-23', - [('https://getfedora.org/static/FDB36B03.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 15'), - [ - KeyInfo( - _('Primary'), - '4096R/069C8460 2011-02-07', - '25DB B54B DED7 0987 F4C1 0042 B4EB F579 069C 8460', - ['Fedora (15) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/069C8460.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 16'), - [ - KeyInfo( - _('Primary'), - '4096R/A82BA4B7 2011-07-25', - '05A9 12AC 7045 7C3D BC82 D352 067F 00B6 A82B A4B7', - ['Fedora (16) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/A82BA4B7.txt', 'Fedora Project') - ]), - - KeyInfo( - _('Secondary'), - '4096R/10D90A9E 2011-08-03', - '7EF8 DA0A F3C7 D285 C298 8375 77D3 A304 10D9 0A9E', - ['Fedora Secondary (16) <fedora@fedoraproject.org>'], - '4096g/8F77BDC3 2011-08-03', - [('https://getfedora.org/static/10D90A9E.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('Fedora 17'), - [ - KeyInfo( - _('Primary'), - '4096R/1ACA3465 2012-01-10', - 'CAC4 3FB7 74A4 A673 D81C 5DE7 50E9 4C99 1ACA 3465', - ['Fedora (17) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/1ACA3465.txt', 'Fedora Project') - ]), - - KeyInfo( - _('Secondary'), - '4096R/F8DF67E6 2012-01-10', - '2086 1F88 B77B EEC8 5CBC 1069 ED85 FCE3 F8DF 67E6', - ['Fedora Secondary Arch (17) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/F8DF67E6.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 18'), - [ - KeyInfo( - _('Primary'), - '4096R/DE7F38BD 2012-08-06', - '7EFB 8811 DD11 E380 B679 FCED FF01 125C DE7F 38BD', - ['Fedora (18) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/DE7F38BD.txt', 'Fedora Project') - ]), - - KeyInfo( - _('Secondary'), - '4096R/A4D647E9 2012-08-06', - '62D6 986A 2639 CF2E 3790 EE45 68DC D160 A4D6 47E9', - ['Fedora Secondary Arch (18) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/A4D647E9.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 19'), - [ - KeyInfo( - _('Primary'), - '4096R/FB4B18E6 2012-12-01', - 'CA81 B2C8 5E4F 4D4A 1A3F 7234 0747 7E65 FB4B 18E6', - ['Fedora (19) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/FB4B18E6.txt', 'Fedora Project') - ,('http://keys.gnupg.net:11371/pks/lookup?search=0xFB4B18E6&op=get', 'keys.gnupg.net') - ]) - , KeyInfo( - _('Secondary'), - '4096R/BA094068 2012-12-20', - 'E6B0 488A 1773 8126 A310 7577 0562 EB6F BA09 4068', - ['Fedora Secondary (19) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/BA094068.txt', 'Fedora Project') - ,('http://keys.gnupg.net:11371/pks/lookup?search=0xBA094068&op=get', 'keys.gnupg.net') - ]) - ])} - - ${keys_for_release( - _('Fedora 20'), - [ - KeyInfo( - _('Primary'), - '4096R/246110C1 2013-05-16', - 'C7C9 A9C8 9153 F201 83CE 7CBA 2EB1 61FA 2461 10C1', - ['Fedora (20) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/246110C1.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/EFE550F5 2013-08-30', - 'FF64 B402 53FA 5A58 B250 6827 DBEA E2E4 EFE5 50F5', - ['Fedora Secondary (20) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/EFE550F5.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('Fedora 21'), - [ - KeyInfo( - _('Primary'), - '4096R/95A43F54 2013-11-14', - '6596 B8FB ABDA 5227 A9C5 B59E 89AD 4E87 95A4 3F54', - ['Fedora (21) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/95A43F54.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/A0A7BADB 2013-11-14', - '9996 E55F A5D4 18C8 6CEF F750 636D EA19 A0A7 BADB', - ['Fedora Secondary (21) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/A0A7BADB.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 22'), - [ - KeyInfo( - _('Primary'), - '4096R/8E1431D5 2014-07-09', - 'C527 EA07 A934 9B58 9C35 E1BF 11AD C094 8E14 31D5', - ['Fedora (22) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/8E1431D5.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/A29CB19C 2014-07-09', - 'B467 FA46 E2CE 5FAC 3499 10C2 D8D1 FA8C A29C B19C', - ['Fedora Secondary (22) <fedora@fedoraproject.org>'], - None, - [('https://getfedora.org/static/A29CB19C.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 23'), - [ - KeyInfo( - _('Primary'), - '4096R/34EC9CBA 2015-02-17', - 'EF45 5106 80FB 0232 6B04 5AFB 3247 4CF8 34EC 9CBA', - ['Fedora (23) <fedora-23-primary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/34EC9CBA.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/873529B8 2015-02-17', - '0108 4DD8 8A5E 6224 F7A6 7B76 B4BB 871C 8735 29B8', - ['Fedora Secondary (23) <fedora-23-secondary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/873529B8.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 24'), - [ - KeyInfo( - _('Primary'), - '4096R/81B46521 2015-07-25', - '5048 BDBB A5E7 76E5 47B0 9CCC 73BD E983 81B4 6521', - ['Fedora (24) <fedora-24-primary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/81B46521.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/030D5AED 2015-07-27', - '8C6E 5A80 A399 BABE 7919 85BA B863 5EEB 030D 5AED', - ['Fedora Secondary (24) <fedora-24-secondary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/030D5AED.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('Fedora 25'), - [ - KeyInfo( - _('Primary'), - '4096R/FDB19C98 2016-03-31', - 'C437 DCCD 558A 66A3 7D6F 4372 4089 D8F2 FDB1 9C98', - ['Fedora 25 Primary (25) <fedora-25-primary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/FDB19C98.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/E372E838 2016-03-31', - '838B D48E 1B70 069F 4111 BDE9 1A18 5CDD E372 E838', - ['Fedora 25 Secondary (25) <fedora-25-secondary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/E372E838.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 26'), - [ - KeyInfo( - _('Primary'), - '4096R/64DAB85D 2016-09-09', - 'E641 850B 77DF 4353 78D1 D7E2 812A 6B4B 64DA B85D', - ['Fedora 26 Primary (26) <fedora-26-primary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/64DAB85D.txt', 'Fedora Project') - ]) - , KeyInfo( - _('Secondary'), - '4096R/3B921D09 2016-08-08', - '19AA 0442 2491 9109 8B3D 8035 4560 FD4D 3B92 1D09', - ['Fedora 26 Secondary (26) <fedora-26-secondary@fedoraproject.org>'], - None, - [('https://getfedora.org/static/3B921D09.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora 27'), - [ - KeyInfo( - _('Primary'), - '4096R/F5282EE4 2017-02-21', - '860E 19B0 AFA8 00A1 7518 81A6 F55E 7430 F528 2EE4', - ['Fedora 27 (27) <fedora-27@fedoraproject.org>'], - None, - [('https://getfedora.org/static/F5282EE4.txt', 'Fedora Project') - ]) - ])} -
- -
- ${keys_for_release( - _('EPEL 5'), - [ - KeyInfo( - _('Primary'), - '1024D/217521F6 2007-03-02 [expires: 2017-02-27]', - 'B940 BE07 7D71 0A28 7D7F 2DD1 119C C036 2175 21F6', - ['Fedora EPEL <epel@fedoraproject.org>'], - '2048g/B6610DAF 2007-03-02 [expires: 2017-02-27]', - [('https://getfedora.org/static/217521F6.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('EPEL 4'), - [ - KeyInfo( - _('RPM-GPG-KEY-EPEL'), - '1024D/217521F6 2007-03-02 [expires: 2017-02-27]', - 'B940 BE07 7D71 0A28 7D7F 2DD1 119C C036 2175 21F6', - ['Fedora EPEL <epel@fedoraproject.org>'], - '2048g/B6610DAF 2007-03-02 [expires: 2017-02-27]', - [('https://getfedora.org/static/217521F6.txt', 'Fedora Project') - ]) - ])} - - ${keys_for_release( - _('Fedora Extras'), - [ - KeyInfo( - _('Fedora Extras'), - '1024D/1AC70CE6 2004-12-14', - '5389 DD00 C5BC 5168 12B4 3272 82ED 9504 1AC7 0CE6', - [ - 'Fedora Project <fedora-extras@fedoraproject.org>', - 'Fedora Pre Extras Release <pre-extras@fedoraproject.org>', - 'Fedora Project <fedora-extras@redhat.com>' - ], - '1024g/4E1A9D43 2004-12-14', - [], - Markup(_('If you are using Fedora Extras with Fedora Core 6, use this package from <strong>extras</strong> repository. This key will no longer be used after Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not included in the <strong>fedora-release</strong> package in Fedora 7 and later releases.'))) - ])} - - ${keys_for_release( - _('Legacy'), - [ - KeyInfo( - _('Legacy'), - '1024D/731002FA 2004-01-19', - 'D66D 121F 9784 5E7B 2757 8C46 108C 4512 7310 02FA', - ['Fedora Legacy (http://www.fedoralegacy.org) <secnotice@fedoralegacy.org>'], - '2048g/D12E351D 2004-01-19', - [], - Markup(_('This key was used for packages that were released by Fedora Legacy project to update releases that reached their official EOL. The Fedora Legacy project no longer exists, so this key will no longer be used to sign packages. This key is not included in the <strong>fedora-release</strong> package in Fedora 7 and later releases.'))) - ])} -
-
- - diff --git a/getfedora.org/data/content/server/download/index.html b/getfedora.org/data/content/server/download/index.html deleted file mode 100644 index d893d3f..0000000 --- a/getfedora.org/data/content/server/download/index.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - ${_('Download Fedora Server')} - - - - - - - - -
-
-
-

${_('Fedora Server Images')}

-

${_('The Fedora Server installation image allows you to make media for your computer that boots to the installer to directly install Fedora Server on to your hard drive')}

-

${_('To use this image, you need a drive that can create or "burn" DVDs, or a USB flash drive at least as big as the image.')}

- -

${_('x86_64 Images')}

- - - - - - - - - - - - - - - - - - - - - -
${_('Description')}${_('Download')}
DVD ISO${Markup(_('%sGB')) % global_variables.iso_size['x86_64_server_DVD']} - ${_('Download')} -
Net-install ISO${Markup(_('%sMB')) % global_variables.iso_size['x86_64_server_net']} - ${_('Download')} -
- -
- - -

${_('aarch64 Images')}

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
${_('Description')}${_('Download')}
DVD ISO${Markup(_('%sGB')) % global_variables.iso_size['aarch64_Server_DVD']} - ${_('Download')} -
Net-install ISO${Markup(_('%sMB')) % global_variables.iso_size['aarch64_Server_net']} - ${_('Download')} -
Raw Image${Markup(_('%sMB')) % global_variables.iso_size['aarch64_Server_raw']} - ${_('Download')} -
- - - -

${Markup(_('If you would like to try out the new modular features of Fedora Server, please visit the <a href="%(modules)s">Using Modules</a> section of the Modularity Documentation. If you would like more information about Modularity in general, please see the <a href="%(website)s">website on pagure</a>.') % {'modules': 'https://docs.fedoraproject.org/fedora-project/subprojects/fesco/en-US/Using_Modules.html', 'website': 'https://docs.pagure.org/modularity/'})}

- -
- -
- -
- -

${_('Other Downloads')}

-
-
${Markup(_('F%(rel)s Beta')) % {'rel':global_variables.release['next_server_id']}}
-

${_('Try a pre-release')}

-

${_('We\'re working on our next release.')}
- ${Markup(_('Help us get F%(rel)s ready!')) % {'rel':global_variables.release['next_server_id']}}

-

${Markup(_('Download F%(rel)s Beta images')) % {'rel':global_variables.release['next_server_id']}}

-

${_('How to test pre-releases')}

-
-
- -
-

${_('Get more Fedora')}

- -
- -
-
-
- - diff --git a/getfedora.org/data/content/server/download/server-download-splash.html b/getfedora.org/data/content/server/download/server-download-splash.html deleted file mode 100644 index ef70171..0000000 --- a/getfedora.org/data/content/server/download/server-download-splash.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - ${_('Download Fedora Server')} - - - - - - -
-
-
-
-

${_('Thanks for Downloading Fedora!')}

-

${_('Your download should begin in a few seconds. If not, click the link below:')} -

-

-
-
-
-
- -
-
-
-

${Markup(_('Verify your Download!'))}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the proper CHECKSUM file into the same directory as the image you downloaded and follow <a href="%s/%s/verify">these instructions</a>.') % (path, lang))}

-
- -
-

${_('How do I turn the Live image into bootable media?')}

-

${Markup(_('After you download the image, you will make bootable media from it. Either <a href="%s">burn the image to a blank DVD disc</a>, or <a href="%s">write the image to a USB flash drive</a>.') % ('https://docs.fedoraproject.org/en-US/fedora/f29/install-guide/install/Preparing_for_Installation/#_creating_a_boot_cd_or_dvd', 'https://fedoraproject.org/wiki/How_to_create_and_use_Live_USB'))}

-

${_('How do I boot from the media?')}

-

${Markup(_("Consult your computer system's documentation for the procedure to boot from media other than the built-in hard disk. The process may differ based on the manufacturer and model of your computer. You may find <a href='%s'>these common tips</a> useful.") % ('https://docs.fedoraproject.org/en-US/fedora/f29/install-guide/install/Booting_the_Installation/#sect-preparing-boot'))}

- -
-
-
- - - diff --git a/getfedora.org/data/content/server/index.html b/getfedora.org/data/content/server/index.html deleted file mode 100644 index a545992..0000000 --- a/getfedora.org/data/content/server/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - ${_('Get Fedora Server: the latest tech for your apps and services')} - - - - - - - - - - - -
-
-
-
-

${_('Fedora Server')}

-

${_('Fedora Server is a short-lifecycle, community-supported server operating system that enables seasoned system administrators, experienced with any OS, to make use of the very latest technologies available in the open source community.')}

-
-
-
-
- - -
-
-
-
- -
-
-

${_('Introducing Modularity')}

-

${_('Modularity brings a new Modular repository providing additional versions of software on independent lifecycles.')}

-

${_('Choose the right version of an application or a language stack you need, and keep it even when your OS upgrades to a newer version.')}

-

${_('Learn more about Modularity')}

-
-
-
-
- - -
-
-
-
-

${_('Easy Administration')}

-

${_('Manage your system simply with Cockpit\'s powerful, modern interface. View and monitor system performance and status, and deploy and manage container-based services.')}

-
-
- -
-
-
-
- - - - - -
-
-
-
-
-
-

${_('Database Services')}

-

${_('Fedora Server brings with it an enterprise-class, scalable database server powered by the open-source PostgreSQL project.')}

-
-
-
-
- -
-
-
-
-

${_('Complete Enterprise Domain Solution')}

-

${_('Level up your Linux network with advanced identity management, DNS, certificate services, Windows(TM) domain integration throughout your environment with FreeIPA, the open-source domain controller.')}

-
-
- -
-
-
-
- - -
-
-
-
-
-

${Markup(_('“For DevConf US, I needed a system to manage the conference. I discovered regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it won\'t run in nodejs 8 in F27. Launching F28 Server, choosing the "nodejs:6" stream, worked like a charm!”'))}

-
Langdon White, ${_('DevConf US Conference Co-Chair')}
-
-
-
- -
-
-
-
- - - - - - -
-

${_('Ready to give Fedora Server a try?')}

-

${_('Download now')}

-
- - - -
-
-
-
- -
-
- -
-
-
-
- - - - - - diff --git a/getfedora.org/data/content/server/prerelease/index.html b/getfedora.org/data/content/server/prerelease/index.html deleted file mode 100644 index 5f7f784..0000000 --- a/getfedora.org/data/content/server/prerelease/index.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - ${Markup(_('Download Fedora %s Server')) % global_variables.release['curr_server_state']} - - - - - -
-
-
- -

${Markup(_('This is pre-release software and is supported by the <a href="%(team_url)s">Server Working Group</a>. Please direct questions to their <a href="%(team_list)s">mailing list</a> or %(team_irc)s on freenode.') % {'team_url':'http://fedoraproject.org/wiki/Server', 'team_list':'https://lists.fedoraproject.org/mailman/listinfo/server', 'team_irc':'#fedora-server'})} - ${Markup(_('All issues or bugs should be reported via the <a href="%s">Red Hat Bugzilla</a>. The Fedora Project makes no guarantees as to its suitability or usefulness.') % 'https://bugzilla.redhat.com/')} - - ${Markup(_('Read the <a href="%(relnotes_url)s">Release Notes</a> for more information on changes and new features, and the <a href="%(commonbugs_url)s">Common Bugs</a> page for information on commonly-encountered bugs and how to avoid them.') % {'relnotes_url':'https://fedoraproject.org/wiki/Fedora_%s_Alpha_release_notes' % global_variables.release['next_server_id'], 'commonbugs_url': 'https://fedoraproject.org/wiki/Common_F%s_bugs' % (global_variables.release['next_server_id'])})} - - ${Markup(_('Read the <a href="%(relnotes_url)s">Release Notes</a> for more information on changes and new features, and the <a href="%(commonbugs_url)s">Common Bugs</a> page for information on commonly-encountered bugs and how to avoid them.') % {'relnotes_url':'https://fedoraproject.org/wiki/F%s_Beta_release_announcement' % global_variables.release['next_server_id'], 'commonbugs_url': 'https://fedoraproject.org/wiki/Common_F%s_bugs' % (global_variables.release['next_server_id'])})} - - -

- -

${_('When is Fedora %s going to be released?') % global_variables.release['next_server_id']}

- ${_('Read all the key milestones of the release schedule...')} - -

${_('Verify your Image')}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the CHECKSUM file below into the same directory as the image you downloaded and follow <a href="%s/%s/verify">these instructions</a>.') % (path, lang))}

-
- -
-
- -
-

${_('Other Downloads')}

-

- ${_('Netinstall Image:')} -

-

-
-
-
- - diff --git a/getfedora.org/data/content/sponsors.html b/getfedora.org/data/content/sponsors.html deleted file mode 100644 index 580d189..0000000 --- a/getfedora.org/data/content/sponsors.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - ${_('Fedora Sponsors')} - - - - - - - -
-
-

${_('Primary Sponsor')}

- Red Hat, Inc. -

${Markup(_('<a href="%s">Red Hat, Inc.</a> is the primary sponsor for the Fedora Project. Red Hat provides the Fedora project with a wide variety of resources, including full-time employee support, infrastructure hardware and bandwidth, event funding, and legal counsel.') % 'http://www.redhat.com/')}

-
-
- -
-
-
-

${_('The Fedora Project is also grateful to the following sponsors for providing substantial support:')}

-
-
-
- -
-
-
- Dell Inc. -
-
- Proio -
-
- ServerBeach -
-
-
-
- TeliaSonera -
-
- OSUOSL -
-
- Tummy -
-
-
-
- ColocationAmerica -
-
- Dedicated Solutions -
-
- ibiblio -
-
-
-
- BODHost -
-
- host1plus -
-
- InterNetX -
-
-
-
- CDN77.com -
-
-
- -
-
-
-

${_('Interested in sponsoring something for Fedora?')}

-

${Markup(_('Contact <a href="%(mail_url)s">admin@fedoraproject.org</a> or stop by <strong>#fedora-admin</strong> on <strong>irc.freenode.net</strong>.') % {'mail_url':'mailto:admin@fedoraproject.org'})}

-
-
-
- - - - - diff --git a/getfedora.org/data/content/verify.html b/getfedora.org/data/content/verify.html deleted file mode 100644 index 74aa9da..0000000 --- a/getfedora.org/data/content/verify.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - ${_('Verify your Downloaded Image')} - - - - - - - -
-
-
-

${Markup(_('How do I verify my image?'))}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the proper CHECKSUM file into the same directory as the image you downloaded.'))}

-
-
-
-
- -

${_('Workstation')}

- - -
- -
- -
-
-

${Markup(_('Next, import Fedora\'s GPG key(s):'))}

-
$ curl https://getfedora.org/static/fedora.gpg | gpg --import
-

${Markup(_('You can verify the details of the GPG key(s) <a href="%s/%s/keys">here</a>.') % (path, lang))}

-

${Markup(_('Now, verify that the CHECKSUM file is valid:'))}

-
$ gpg --verify-files *-CHECKSUM
-

${Markup(_('The CHECKSUM file should have a good signature from one of the following keys:'))}

-
    -
  • CFC659B9 - ${_('Fedora 30')}
  • -
  • 429476B4 - ${_('Fedora 29')}
  • -
  • 9DB62FB1 - ${_('Fedora 28')}
  • -
  • DBBDCF7C - ${_('IOT 2019')}
  • -
-

${Markup(_('Finally, now that the CHECKSUM file has been verified, check that the image\'s checksum matches:'))}

-
$ sha256sum -c *-CHECKSUM
-

${Markup(_('If the output states that the file is valid, then it\'s ready to use!'))}

-

${_('How do I verify my downloaded image on another operating system?')}

-

${_('Read these instructions to verify your image.')}

-
-
-
- - - - diff --git a/getfedora.org/data/content/workstation/download/index.html b/getfedora.org/data/content/workstation/download/index.html deleted file mode 100644 index 74d0caa..0000000 --- a/getfedora.org/data/content/workstation/download/index.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - ${_('Download Fedora Workstation')} - - - - - - - -
-
-
-

${_('Running Fedora Workstation')}

-

${_('To run Fedora Workstation, you will need:')}

-
    -
  • ${_('Fedora Media Writer (download above)')}
  • -
  • ${Markup(_('A USB Flash drive with at least %s GB space available')) % global_variables.iso_size['x86_64_workstation']}
  • -
-

${Markup(_('Fedora Workstation is provided via Fedora Media Writer. Download this program for your <a href="%s">supported platform</a> and follow the prompts to generate a live version (see \'What does "Live" mean?\' to the right) of Fedora Workstation on a USB flash drive. You may then run the live version of Fedora Workstation from your USB flash drive.') % ('#fmw'))}

-

${_('Optionally, you may install Fedora Workstation to a laptop or desktop computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space available. To do this, run the live version of Fedora Workstation from your USB flash drive on the computer you\'d like to install to, run the Fedora Media Writer application, and follow the on-screen prompts to complete installation.')}

- -

${_('Supported Platforms')}

-

${_('Fedora Media Writer supports the following platforms:')}

-
    -
  • ${_('Mac OS X')}
  • -
  • ${_('Windows')}
  • -
  • ${_('Linux')}
  • -
- - - - -
- ${_('View all platform downloads')} - -
- - - - - - -
- -
-
-

${_('Other Downloads')}

-

${Markup(_('64-bit %sGB Live image')) % global_variables.iso_size['x86_64_workstation']}

-

${Markup(_('32-bit %sGB Live image')) % global_variables.iso_size['i386_workstation']}

-

- ${_('Netinstall Images:')} -

-

- - -
-
-

${_('Try Fedora Silverblue')}

-

${_('Silverblue provides an immutable OS image and updates via OSTree.')}

-

- ${Markup(_('64-bit %sGB Silverblue image')) % global_variables.iso_size['x64_silverblue']} -

-

${_('Learn more')}

-
-
- - -
- - -
-
${Markup(_('F%(rel)s Alpha')) % {'rel':global_variables.release['next_id']}}
-

${_('Try a pre-release')}

-

${_('We\'re working on our next release.')}
- ${Markup(_('Help us get F%(rel)s ready!')) % {'rel':global_variables.release['next_id']}}

-

${Markup(_('Download F%(rel)s Alpha images')) % {'rel':global_variables.release['next_id']}}

-

${_('How to test pre-releases')}

-
-
- -
-
${Markup(_('F%(rel)s Beta')) % {'rel':global_variables.release['next_id']}}
-

${_('Try a pre-release')}

-

${_('We\'re working on our next release.')}
- ${Markup(_('Help us get F%(rel)s ready!')) % {'rel':global_variables.release['next_id']}}

-

${Markup(_('Download F%(rel)s Beta images')) % {'rel':global_variables.release['next_id']}}

-

${_('How to test pre-releases')}

-
-
-
-
- -

${_('Resources')}

-

${Markup(_('<a href="%(fmagazine_url)s"><strong>Release Announcement</strong></a>') % {'fmagazine_url': 'https://fedoramagazine.org/announcing-fedora-%s' % (global_variables.release['curr_id'])})}

-

${_('Read the full Release Announcement on Fedora Magazine.')}

-

${Markup(_('<a href="%(release_notes)s"><strong>Release Notes</strong></a>') % {'release_notes': 'https://docs.fedoraproject.org/en-US/fedora/f%s/release-notes/' % (global_variables.release['curr_id'])})}

-

${_('Learn about changes since the last version of Fedora as well as minimum requirements and recommendations for running Fedora.')}

-

${Markup(_('<a href="%(install_guide)s"><strong>Installation Guide</strong></a>') % {'install_guide': 'https://docs.fedoraproject.org/en-US/fedora/f%s/install-guide/' % (global_variables.release['curr_id'])})}

-

${_('We recommend you look through this before installing to your system, since it answers many common questions.')}

-

${Markup(_('<a href="%(commonbugs_url)s"><strong>Common Bugs</strong></a>') % {'commonbugs_url': 'https://fedoraproject.org/wiki/Common_F%s_bugs' % (global_variables.release['curr_id'])})}

-

${_('An excellent resource to consult in case you run into any issues installing or running Fedora.')}

- -

${_('What does "Live" mean?')}

-

${_('Fedora Media Writer will create a complete, running Fedora Workstation you can run right away off of a USB drive. You can use the Live image to test and play with Fedora without making changes to your hard disk.')}

-

${_('When you are ready, you can install Fedora to your hard disk from within this "live" version of Fedora Workstation.')}

- - -
-
-
- - diff --git a/getfedora.org/data/content/workstation/download/ws-download-splash.html b/getfedora.org/data/content/workstation/download/ws-download-splash.html deleted file mode 100644 index 1345dca..0000000 --- a/getfedora.org/data/content/workstation/download/ws-download-splash.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - - ${_('Download Fedora Workstation')} - - - - - -
-
-
-
-

${_('Thanks for Downloading Fedora!')}

-

${_('Your download should begin in a few seconds. If not, click the link below:')} -

-

-
-
-
-
-
-
-
-

${Markup(_('Verify your Download!'))}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the proper CHECKSUM file into the same directory as the image you downloaded and follow <a href="%s/%s/verify">these instructions</a>.') % (path, lang))}

-
- -
-

${_('How do I turn the Live image into bootable media?')}

-

${Markup(_('After you download the image, you will make bootable media from it. Either <a href="%s">burn the image to a blank DVD disc</a>, or <a href="%s">write the image to a USB flash drive</a>.') % ('https://docs.fedoraproject.org/en-US/fedora/f29/install-guide/install/Preparing_for_Installation/#_creating_a_boot_cd_or_dvd', 'https://fedoraproject.org/wiki/How_to_create_and_use_Live_USB'))}

-

${_('How do I boot from the media?')}

-

${Markup(_("Consult your computer system's documentation for the procedure to boot from media other than the built-in hard disk. The process may differ based on the manufacturer and model of your computer. You may find <a href='%s'>these common tips</a> useful.") % ('https://docs.fedoraproject.org/en-US/fedora/f29/install-guide/install/Booting_the_Installation/#sect-preparing-boot'))}

- -
-
-
- - diff --git a/getfedora.org/data/content/workstation/index.html b/getfedora.org/data/content/workstation/index.html deleted file mode 100644 index 6035f06..0000000 --- a/getfedora.org/data/content/workstation/index.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - ${_('Get Fedora Workstation: the best desktop OS for software developers')} - - - - - - - -
-
-
-
-

${_('Fedora Workstation is a reliable, user-friendly, and powerful operating system for your laptop or desktop computer. It supports a wide range of developers, from hobbyists and students to professionals in corporate environments.')}

-
-
-
-
- -
-
-
-
-

${Markup(_('“The plethora of tools provided by<br /> Fedora allows me to get the job done.<br /> It just works.”'))}

-
Christine Flood, ${_('JVM performance engineer')}
-
-
-
-
- - -
-
-
-
-

${_('Sleek user interface')}

-

${_('Focus on your code in the GNOME 3 desktop environment. GNOME is built with developer feedback and minimizes distractions, so you can concentrate on what\'s important.')}

-
-
- -
-
-
-
- - -
- -
-
-
- -
-
-

${_('Complete open source toolbox')}

-

${_('Skip the drag of trying to find or build the tools you need. With Fedora\'s complete set of open source languages, tools, and utilities, everything is a click or command line away. There\'s even project hosting and repositories like COPR to make your code and builds available quickly to the community.')}

-
-
-
-
- - - - -
-
-
-
-

${Markup(_('GNOME Boxes & other virt tools'))}

-

${_('Get virtual machines up and running quickly to test your code on multiple platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization tools for even more control.')}

-
-
- -
-
-
-
- - -
-
-
-
- -
-
-

${_('Built-in Docker support')}

-

${_('Containerize your own apps, or deploy containerized apps out of the box on Fedora, using the latest technology like Docker.')}

-
-
-
-
- - - - - - - - - - - - - - - - - -
-

${_('Ready to give Fedora Workstation a try?')}

-

${_('Download now')}

-
- - - - - -
-
-
-
- -
-
- -
-
-
-
- - - - - - diff --git a/getfedora.org/data/content/workstation/prerelease/index.html b/getfedora.org/data/content/workstation/prerelease/index.html deleted file mode 100644 index ff25493..0000000 --- a/getfedora.org/data/content/workstation/prerelease/index.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - ${Markup(_('Download Fedora Workstation %s')) % global_variables.release['curr_state']} - - - - - -
-
-
- -

${Markup(_('This is pre-release software and is supported by the <a href="%(team_url)s">Workstation Working Group</a>. Please direct questions to their <a href="%(team_list)s">mailing list</a> or %(team_irc)s on freenode.') % {'team_url':'http://fedoraproject.org/wiki/Workstation', 'team_list':'https://lists.fedoraproject.org/mailman/listinfo/desktop', 'team_irc':'#fedora-workstation'})} - ${Markup(_('All issues or bugs should be reported via the <a href="%s">Red Hat Bugzilla</a>. The Fedora Project makes no guarantees as to its suitability or usefulness.') % 'https://bugzilla.redhat.com/')} - - ${Markup(_('Read the <a href="%(relnotes_url)s">Release Notes</a> for more information on changes and new features, and the <a href="%(commonbugs_url)s">Common Bugs</a> page for information on commonly-encountered bugs and how to avoid them.') % {'relnotes_url':'https://fedoraproject.org/wiki/Fedora_%s_Alpha_release_notes' % global_variables.release['next_id'], 'commonbugs_url': 'https://fedoraproject.org/wiki/Common_F%s_bugs' % (global_variables.release['next_id'])})} - - ${Markup(_('Read the <a href="%(relnotes_url)s">Release Notes</a> for more information on changes and new features, and the <a href="%(commonbugs_url)s">Common Bugs</a> page for information on commonly-encountered bugs and how to avoid them.') % {'relnotes_url':'https://fedoraproject.org/wiki/F%s_Beta_release_announcement' % global_variables.release['next_id'], 'commonbugs_url': 'https://fedoraproject.org/wiki/Common_F%s_bugs' % (global_variables.release['next_id'])})} - - -

- -

${_('When is Fedora %s going to be released?') % global_variables.release['next_id']}

- ${_('Read all the key milestones of the release schedule...')} - - -
-

${_('Running Pre-Release Versions of Fedora Workstation')}

-

${_('To run a prerelease version of Fedora Workstation, you will need:')}

-
    -
  • ${_('Fedora Media Writer (Download available below)')}
  • -
  • ${Markup(_('A USB Flash drive with at least %s GB space available')) % global_variables.iso_size['x86_64_workstation']}
  • -
  • ${Markup(_('<a href="%s">A live image ISO of the pre-release version of Fedora</a> you wish to run') % ('#iso'))}
  • -
-

${_('WARNING: This procedure destroys all data on your USB media. Make sure to back up any important files from your USB media before you do this.')}

-
    -
  1. ${_('Download and install the Fedora Media Writer app below.')}
  2. -
  3. ${_('Download the Fedora Workstation prerelease ISO image.')}
  4. -
  5. ${_('Open the Fedora Media Writer app. You may need to provide a password to give the app the right permissions.')}
  6. -
  7. ${_('Select "Custom Image." from the list.')}
  8. -
  9. ${_('In the file selection window, locate and select the prerelease ISO image you downloaded.')}
  10. -
  11. ${_('Insert your USB stick in the computer. If you used your USB stick previously to create live media, you may need to restore it to factory settings. The app will ask you whether to do so in this case.')}
  12. -
  13. ${_('Select "Create Live USB" to write the image. Wait until the process is finished before you remove the media and close the app.')}
  14. -
-

${_('Optionally, you may install Fedora Workstation to a laptop or desktop computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space available. To do this, run the live version of Fedora Workstation from your USB flash drive on the computer you\'d like to install to, run the Fedora Media Writer application, and follow the on-screen prompts to complete installation.')}

- -

${_('Supported Platforms')}

-

${_('Fedora Media Writer supports the following platforms:')}

- -
-
-
-

${_('Mac OS X')}

-

${Markup(_('%s MB Fedora Media Writer for <strong>Mac OS X</strong>')) % global_variables.iso_size['macosx']}

-
- -
-
-
-

${_('Windows')}

-

${Markup(_('%s MB Fedora Media Writer for <strong>Windows</strong>')) % global_variables.iso_size['windows']}

-
- -
-
-
-

${_('Linux')}

-

${Markup(_('Available via DNF for <strong>Fedora</strong>'))}
- (${_('More details')})

-
-
-

${Markup(_('64-bit %s GB ISO for <strong>Linux</strong>.')) % global_variables.iso_size['pre_x86_64_workstation']}
- (${_('How to use this ISO?')})

- ${_('Download')} -

(${_('Verify this image')})

-
-
-
-
- - -

${_('Verify your Image')}

-

${Markup(_('Once you have downloaded an image, verify it for security and integrity. To verify your image, start by downloading the proper CHECKSUM file into the same directory as the image you downloaded and follow <a href="%s/%s/verify">these instructions</a>.') % (path, lang))}

- -
-
-

${_('Other Downloads')}

-

${Markup(_('64-bit %sGB Live image')) % global_variables.iso_size['pre_x86_64_workstation']}

- - -

- ${_('Netinstall Images:')} -

-

- -

${_('Try Fedora Silverblue')}

-

- ${Markup(_('64-bit %sGB Silverblue image')) % global_variables.iso_size['x64_silverblue']} -

-

${_('Learn more')}

- -

${_('Resources')}

-

${Markup(_('<a href="%(commonbugs_url)s"><strong>Common Bugs</strong></a>') % {'commonbugs_url': 'https://fedoraproject.org/wiki/Common_F%s_bugs' % (global_variables.release['next_id'])})}

-

${_('An excellent resource to consult in case you run into any issues installing or running Fedora.')}

-

${Markup(_('<a href="https://fedoraproject.org/wiki/QA/Join#release-validation"><strong>How to test pre-releases</strong></a>'))}

-

${_('Fedora wiki guide on how to help test pre-release versions of Fedora.')}

- -

${_('What does "Live" mean?')}

-

${_('Fedora Media Writer will create a complete, running Fedora Workstation you can run right away off of a USB drive. You can use the Live image to test and play with Fedora without making changes to your hard disk.')}

-

${_('When you are ready, you can install Fedora to your hard disk from within this "live" version of Fedora Workstation.')}

- -
-
-
- - diff --git a/getfedora.org/data/templates/cloud-tab.html b/getfedora.org/data/templates/cloud-tab.html deleted file mode 100644 index b902446..0000000 --- a/getfedora.org/data/templates/cloud-tab.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - -
${_('Fedora %s ') % release}
- - - - - - - - - - - - - - - - - - - - - -
${_('Region')}${_('Architecture')}${_('Root store')}${_('AMI ID')}${_('Launch')}
${img['region']}${img['arch']}${img['store']}${img['id']} - - -
- -
- - - - - - - - - - diff --git a/getfedora.org/data/templates/cloud/header.html b/getfedora.org/data/templates/cloud/header.html deleted file mode 100644 index 950fc85..0000000 --- a/getfedora.org/data/templates/cloud/header.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - -
-
-
- -
-
- Fedora Logo -
-
-
- - diff --git a/getfedora.org/data/templates/content-export-regulations.html b/getfedora.org/data/templates/content-export-regulations.html deleted file mode 100644 index 809a1c4..0000000 --- a/getfedora.org/data/templates/content-export-regulations.html +++ /dev/null @@ -1,19 +0,0 @@ - - - -
-
-

${_('Export Regulations')}

-

By clicking on and downloading Fedora, you agree to comply with the following terms and conditions:

- ${_('Read full export regulations')} -

By downloading Fedora software, you acknowledge that you understand all of the following: Fedora software and technical information may be subject to the U.S. Export Administration Regulations (the “EAR”) and other U.S. and foreign laws and may not be exported, re-exported or transferred (a) to any country listed in Country Group E:1 in Supplement No. 1 to part 740 of the EAR (currently, Cuba, Iran, North Korea, Sudan & Syria); (b) to any prohibited destination or to any end user who has been prohibited from participating in U.S. export transactions by any federal agency of the U.S. government; or (c) for use in connection with the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles, or sounding rockets, or unmanned air vehicle systems. You may not download Fedora software or technical information if you are located in one of these countries or otherwise subject to these restrictions. You may not provide Fedora software or technical information to individuals or entities located in one of these countries or otherwise subject to these restrictions. You are also responsible for compliance with foreign law requirements applicable to the import, export and use of Fedora software and technical information.

-
- - - - - - diff --git a/getfedora.org/data/templates/css.html b/getfedora.org/data/templates/css.html deleted file mode 100644 index d5ec54a..0000000 --- a/getfedora.org/data/templates/css.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/getfedora.org/data/templates/export-regulations.html b/getfedora.org/data/templates/export-regulations.html deleted file mode 100644 index 1dbb37c..0000000 --- a/getfedora.org/data/templates/export-regulations.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -
-
-

${_('By clicking on and downloading Fedora, you agree to comply with the following terms and conditions.')}

-

By downloading Fedora software, you acknowledge that you understand all of the following: Fedora software and technical information may be subject to the U.S. Export Administration Regulations (the “EAR”) and other U.S. and foreign laws and may not... ${Markup(_('Read more >'))}

-
-
- - diff --git a/getfedora.org/data/templates/footer.html b/getfedora.org/data/templates/footer.html deleted file mode 100644 index f0c844d..0000000 --- a/getfedora.org/data/templates/footer.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - diff --git a/getfedora.org/data/templates/generic/docs-links.html b/getfedora.org/data/templates/generic/docs-links.html deleted file mode 100644 index cc7be6b..0000000 --- a/getfedora.org/data/templates/generic/docs-links.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -

${_('Documentation and other resources')}

-

${Markup(_('Before installing Fedora, you may want to confirm your system meets minimum requirements for Fedora. Consult <a href="%(release_notes)s">the online release notes</a> to see minimum requirements and recommendations.') % {'release_notes': 'https://docs.fedoraproject.org/en-US/fedora/f%s/release-notes/' % (global_variables.release['curr_id'])})}

-

${Markup(_('There is also a <a href="%(install_guide)s">complete Installation Guide</a> available. We recommend you look through it before installing to your system, since it answers many common questions.') % {'install_guide': 'https://docs.fedoraproject.org/en-US/fedora/f%s/install-guide/' % (global_variables.release['curr_id'])})}

- - diff --git a/getfedora.org/data/templates/generic/other-media-sources.html b/getfedora.org/data/templates/generic/other-media-sources.html deleted file mode 100644 index 7c3768c..0000000 --- a/getfedora.org/data/templates/generic/other-media-sources.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -

${_('Other ways of obtaining media')}

- -

${Markup(_('You may purchase installation media for Fedora from <a href="%s">online vendors</a> or a <a href="%s">local vendor</a> in your area.') % ('https://fedoraproject.org/wiki/Distribution/OnlineVendors', 'https://fedoraproject.org/wiki/Distribution/LocalVendors'))}

- - diff --git a/getfedora.org/data/templates/head.html b/getfedora.org/data/templates/head.html deleted file mode 100644 index 801f1e5..0000000 --- a/getfedora.org/data/templates/head.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - -
-
-
- -
-
- Fedora Logotext -
-
-
- - diff --git a/getfedora.org/data/templates/js.html b/getfedora.org/data/templates/js.html deleted file mode 100644 index 285a130..0000000 --- a/getfedora.org/data/templates/js.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getfedora.org/data/templates/keys/key-button-and-modal-obsolete.html b/getfedora.org/data/templates/keys/key-button-and-modal-obsolete.html deleted file mode 100644 index 89be7dc..0000000 --- a/getfedora.org/data/templates/keys/key-button-and-modal-obsolete.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - -
-

${release}

- - - - - - -
-
- diff --git a/getfedora.org/data/templates/keys/key-button-and-modal.html b/getfedora.org/data/templates/keys/key-button-and-modal.html deleted file mode 100644 index 733b90c..0000000 --- a/getfedora.org/data/templates/keys/key-button-and-modal.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - -
-

${release}

- - - - - - -
-
- diff --git a/getfedora.org/data/templates/master.html b/getfedora.org/data/templates/master.html deleted file mode 100644 index defc7ac..0000000 --- a/getfedora.org/data/templates/master.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - -
- ${select('*')} -
- - -
- -
- - - -
- diff --git a/getfedora.org/data/templates/moretofedora.html b/getfedora.org/data/templates/moretofedora.html deleted file mode 100644 index 9072fab..0000000 --- a/getfedora.org/data/templates/moretofedora.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -
-
-
-
-

${Markup(_('There\'s more to <img class="inlinelogo" src="../../static/images/fedora-logotext.png" alt="Fedora Logo">'))}

-
-
-
-
- diff --git a/getfedora.org/data/templates/productselector-cloud.html b/getfedora.org/data/templates/productselector-cloud.html deleted file mode 100644 index 9cb504c..0000000 --- a/getfedora.org/data/templates/productselector-cloud.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -
-
- - -
-

${_('Atomic')}

-

${_('Lean. Powerful. Everycloud ready.')}

-
- - diff --git a/getfedora.org/data/templates/productselector-server.html b/getfedora.org/data/templates/productselector-server.html deleted file mode 100644 index 6bf8e46..0000000 --- a/getfedora.org/data/templates/productselector-server.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -
-
- - -
-

${_('Server')}

-

${_('The latest technology. A stable foundation. Together, for your applications and services.')}

-
- - diff --git a/getfedora.org/data/templates/productselector-workstation.html b/getfedora.org/data/templates/productselector-workstation.html deleted file mode 100644 index 3537fb4..0000000 --- a/getfedora.org/data/templates/productselector-workstation.html +++ /dev/null @@ -1,15 +0,0 @@ - - -
-
- - -
-

${_('Workstation')}

-

${_('This is the Linux workstation you\'ve been waiting for.')}

-
- diff --git a/getfedora.org/data/templates/regulations.html b/getfedora.org/data/templates/regulations.html deleted file mode 100644 index bcfa335..0000000 --- a/getfedora.org/data/templates/regulations.html +++ /dev/null @@ -1,13 +0,0 @@ - \ No newline at end of file diff --git a/getfedora.org/data/templates/server/header.html b/getfedora.org/data/templates/server/header.html deleted file mode 100644 index d127460..0000000 --- a/getfedora.org/data/templates/server/header.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - -
-
-
- -
-
- Fedora Logo -
-
-
- - diff --git a/getfedora.org/data/templates/workstation/header.html b/getfedora.org/data/templates/workstation/header.html deleted file mode 100644 index 635bb60..0000000 --- a/getfedora.org/data/templates/workstation/header.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - -
-
-
- -
-
- Fedora Logo -
-
-
- - diff --git a/getfedora.org/po/LINGUAS b/getfedora.org/po/LINGUAS deleted file mode 100644 index 7e3bb1c..0000000 --- a/getfedora.org/po/LINGUAS +++ /dev/null @@ -1,60 +0,0 @@ -af -ar -as -ast -bal -bg -bn -bn_IN -br -ca -cs -da -de -el -en -en_GB -es -eu -fa -fi -fr -fur -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 -th -tr -uk -vi -zh_CN -zh_TW diff --git a/getfedora.org/po/ach.po b/getfedora.org/po/ach.po deleted file mode 100644 index ed4dd2a..0000000 --- a/getfedora.org/po/ach.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \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 1.3\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/af.po b/getfedora.org/po/af.po deleted file mode 100644 index 6d2cb91..0000000 --- a/getfedora.org/po/af.po +++ /dev/null @@ -1,2448 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:27-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora Borge" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Volgende, voer vir Fedora se GPG sleutel(s) in:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Volgende, versker dat die CHECKSUM wel geldig is:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Die CHECKSUM behoort oor 'n bevestigde handtekeing van een van die volgende " -"sleutels te beskik:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Aflaai" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Kontroleer die URL as jy dit eiehandig ingetik het. Het jy dit korrek " -"oorgetik?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Invoer van sleutels" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Jy kan altyd eiehandig 'n sleutel by die rpm databasis invoer deur die " -"volgende opdrag te gebruik:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Verwys na die rpm handboek vir meer inligting." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"As jy wil bevestig dat die sleutels wat op jou stelsel geinstalleer is met " -"die sleutels wat hier gelys is ooreenstem, kan jy GnuPG gebruik om te " -"verseker dat die sleutels met mekaar ooreenstem. Byvoorbeeld:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Uitvoerregulasies" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Borge" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Kry Hulp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installeringsgids" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Sluit aan" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Sluit by Fedora aan" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/aln.po b/getfedora.org/po/aln.po deleted file mode 100644 index 8afacd8..0000000 --- a/getfedora.org/po/aln.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora-web/language/aln/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: aln\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/am.po b/getfedora.org/po/am.po deleted file mode 100644 index 680c506..0000000 --- a/getfedora.org/po/am.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Amharic\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: am\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/anp.po b/getfedora.org/po/anp.po deleted file mode 100644 index 01ec0e7..0000000 --- a/getfedora.org/po/anp.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Angika\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: anp\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ar.po b/getfedora.org/po/ar.po deleted file mode 100644 index 9b829c9..0000000 --- a/getfedora.org/po/ar.po +++ /dev/null @@ -1,2594 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Khalid Moharrum , 2015. #zanata -# Mohamed Fawzy , 2015. #zanata -# Mohammed Tayeh , 2015. #zanata -# Oussemos , 2016. #zanata -# Robert Mayr , 2016. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2016-12-20 04:31-0500\n" -"Last-Translator: Robert Mayr \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" -"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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "قواعد فيدورا للسلوك والإنضباط" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "قواعد فيدورا للسلوك والإنضباط" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "تصرف لعضو في المجتمع، إتبع قواعد السلوك والإنضباط." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "قواعد السلوك والإنضباط" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"مجتمع فيدورا يتكون من خليط من المحترفين والمتطوعين من جميع انحاء العالم، " -"يعملون على جميع نواحي النظام من الشفره البرمجيه إلى التسويق. التنوع هو احد " -"عوامل قوتنا، ولكنه يمكن ان يسبب مشاكل في التواصل وعدم الرضا. ولذلك لدينا بعض" -" القواعد الاساسيه والتي نطلب من الاشخاص إحترامها والتمسك بها عند استخدامهم " -"موارد المشروع." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"هذه القائمة ليست شاملة لكل الأشياء التي لا يمكنك فعلها. في الواقع, يمكنك أن " -"تعتبر من الروح المقصودة - ألا و هو دليل للتعاون و العمل الجماعي." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"الرجاء الأخذ بعين الاعتبار, سوف يتم استخدام عملك من قبل الآخرين، وفي المقابل" -" سوف تعتمد على عمل الآخرين. كل قرار تتخذه سوف يؤثر على المستخدمين والزملاء، " -"مما وجب الحيطة في عملية صنع القرار." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"الرجاء احترام الأخرين. نحن لا نتفق دائما، ولكن هذا ليس مبررا لسوء السلوك أو " -"سوء الأدب. يمكننا أن نواجه الاحباط في أي وقت، لكننا لا يمكن أن نسمح بأن يصبح" -" الاحباط هجوما شخصيا. علينا أن نتذكر أن المجتمع حيث يشعر الناس بالاحباط و " -"الأذى النفسي ليس مكانا ملائما للاعطاء. أعضاء مجتمع فيدورا يجب أن يكونوا " -"محترمين عند التبادل مع المشاركين الآخرين من داخل أو خارج مجتمع فيدورا و مع " -"كل المستخدمين بصفة عامة." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"عندما نختلف، نحن نحاول أن نفهم لماذا. الخلافات، سواء الاجتماعية والتقنية، " -"تظهر في كل وقت، وفيدورا ليست استثناء من هذه القاعدة. ومن المهم حل هذه " -"الخلافات والاختلافات في الرأي بطرق بناءة." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"تذكر أننا جميعا مختلفون. قوة فيدورا تأتي من المجتمع المتنوع من الناس من " -"مختلف الخلفيات. مختلف الناس لديهم آراء مختلفة في مواضيع مختلفة. عدم القدرة " -"على فهم وجهة نظر شخص لا يعني أنه خاطئ. تذكر أن الإنسان يخطئ، و اتهام بعضنا " -"البعض لا يحل الاختلافات، وأنه من الأفضل المساعدة في حل المشاكل والتعلم من " -"الأخطاء." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr ".إختر الحرية. إختر فيدورا" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"

سهل التثبيت، اكثر إبداعا. إختر توزيعة فيدورا\n" -" التي تناسب إحتياجاتك وإبدأ العمل الان." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "نزل الآن" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation أنيق، نظام تشغيل سهل الإستخدام لأجهزة الكمبيوتر المكتبي " -"والمحمول، يحتوي على مجموعة كاملة من الادوات للمبرمجين من جميع الفئات." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr " !نزل فيدورا الآن" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server نظام تشغيل قوي و مرن، يحتوي على أفضل و آخر التقنيات المستخدمه " -"في مراكز البيانات، بحيث تطون المتحكم بالبنى التحتيه والخدمات." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora دائما مجاني للإستخدام، التعديل و التوزيع. يتم بنائه واستخدامه من قبل " -"الاشخاص من جميع انحاء العالم والذين يعملون معا كمجتمع Fedora" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "هل تريد خيارات أكثر من فيدورا ؟" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr ".إبق على إتصال و إتطلاع" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "إقرأ الوثائق." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"إتطلع على ملحوظات الإصدار لمعلومات مفصله عن الإصدار الحالي. لتعرف أكثر عن " -"طريقة إستخدام فيدورا ولتفاصيل كمتطلبات النظام، إتطلع على الوثائق الرسميه." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "إحصل على المساعده." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"هل تحتاج مساعده مع Fedora ؟ جرب Ask Fedora، حيث تستطيع " -"قراءة ارشيف اسالة المستخدمين، او طرح اسالتك الخاصه." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora رعاة" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "مشروع Fedora يفخر بالحصول على المنظمات التاليه كرعاه ..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "الراعي الرئيسي" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"الراعي الرسمي لمشروع Fedora Red Hat, Inc.. Red Hat توفر " -"لمشروع Fedora موارد متنوعه وكثيره في مختلف المجالات، وذلك يشمل دعم الموظفين،" -" بنى تحتيه للأجهزه والنطاقات، تمويل الفعاليات والإستشارات القانونيه." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "مشروع Fedora يشكر ايضا الراعاة التاليين لتوفير دعم جوهري وكبير :" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "هل ترغب في ان ترعى شيئا لـ Fedora ؟" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"إتصل بـ admin@fedoraproject.org او قم بزيارة " -"#fedora-admin على irc.freenode.net" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "تحقق من النسخه التي قمت بتحميلها" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "تعليمات حول التحقق من النسخه والبصمه" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "كيف اتحقق من نسختي ؟" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"بعد تحميل النسخه، قم بالتحقق من سلامتها وصلاحيتها. للتحقق من النسخه، قم " -"بتحميل ملف البصمه المتوافق مع النسخه في نفس المجلد." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "لنسخ معمارية 64-بت" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "لنسخ معمارية 32-بت" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr " Atomic Host لنسخ ايزو " - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Atomic Host لنسخ " - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "و من ثم إستورد مفاتيح جي بي جى الخاصه بـ Fedora " - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "يمكنك التحقق من تفاصيل مفاتيح جي بي جي هنا" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "الان تحقق من صلاحية ملف البصمه :" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "ملف البصمه يجب ان يحتوي احد المفاتيح الاتيه :" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "فيدورا 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"معامير الحاسوب الثانويه لـ Fedora 26 وهي AArch64، PPC64، s390 و s390x." - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"اخيراً، بعد التحقق من ملف البصمه، قم بالتحقق من مطابقة بصمة ملف النسخه:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "إذا كانت النتيجه ان الملف سليم، النسخه جاهزه للإستخدام!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "كيف اتحقق من النسخه المحمله على انظمة تسغيل اخرى ؟" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree تحديثات " - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "OpenShiftو Kubernetesالأمثل ل " - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "؟ Fedora Atomic هل انت مستعد لتجربة" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Fedora شكراً! لتحميل" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"التحميل سوف يبدأ بعد ثواني قليله، إذا لم يبدأ، إضغط على الرابط ادناه :" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "تحقق من الملف المحمل!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"بعد تحميل النسخه، قم بالتحقق من سلامتها وصلاحيتها. للتحقق من النسخه، قم " -"بتحميل ملف البصمه المتوافق مع النسخه في نفس المجلد ومن ثم إتبع هذه التعليمات." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Fedora Atomic تحميل" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Atomic Host %(rel)s تحميل فيدورا " - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host نسخ" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "اغلاق" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "المنطقه" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "(AMI ID) تعريف نسخة الآله الخاصه بأمازون" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "تشغيل" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMIs" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant تحميل نسخ " - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox نسخة" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"إذا كنت تستخدم Vagrant على Mac OS او Windows، على الأرجح هذه النسخه التي " -"تريد إستخدامها." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "تحميل" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM نسخة" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"إذا كنت تستخدم Vagrant على Fedora، هذه هي النسخه التي ترغب في إستخدامها." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 نسخة" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"هذه هي نسخة Fedora %(rel)s Cloud Atomic Host في صيغة Qcow2 للإستخدام مع " -"OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "نسخة Qcow2 64-بت %s ميجا بايت" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "نسخه خام" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"هذه هي نسخة Fedora %(rel)s Cloud Atomic Host في صورة نسخه اوليه مضغوطه. إذا " -"كنت غير متأكد من إختيار نسخه، جرب هذه." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "نسخه اوليه xz-Compressed 64-بت %s ميجا بايت" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "تحميلات اخرى" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "تحقق من نسختك" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"هذه هي نسخة Fedora %(rel)s %(state)s Cloud Atomic Host في صيغة Qcow2 " -"للإستخدام مع OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"هذه هي نسخة Fedora %(rel)s %(state)s Cloud Atomic Host في صورة نسخه اوليه " -"مضغوطه. إذا كنت غير متأكد من إختيار نسخه، جرب هذه." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "مشروع Fedora - الصفحه غير موجوده" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "الصفحه غير موجوده : 404" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "نحن نعتذر، ولكن الصفحه او الملف الذي طلبته غير موجود." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "أفكار لتشخيص الاخطاء وإصلاحها" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "تاكد من الرابط المستخدم .إذا كنت كتبته يدويا .تأكد من نقله بشكل صحيح." - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"الرابط لا يعمل ؟ إتصل بـ مدير الموقع وقم بإيضاح الرابط " -"الذي نقلك إلى هنا." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"الصفحه او الملف يمكن ان يكون قد تم نقلهم. تحقق من الصفحه" -" الرئيسيه او قم بالبحث في موسوعتنا." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "مفاتيح تسجيل الحزم" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "هذه الصفحه تعرض قائمه بمفاتيح GPG المستخدمه لتسجيل الحزم في Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "إعرف كيف يقوم Fedora بحمايتك." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "Fedora يستفيد من تسجيل النسخ بـ GPG للتأكد من سلامة الحزم" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "إقرأ الاسئله المتداوله لتعرف اكثر >" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "المفاتيح المستخدمه حاليا" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "رئيسي" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "ثانوي" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "هل تبحث عن مفاتيح قديمه ؟" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "مفايتح تسجيل الحزم القديمه" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"هذه الصفحه تعرض مفاتيح GPG العامه الغير مستخدمه لتسجيل الحزم في Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "المفاتيح القديمه والغير مستخدمه" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG مفاتيح" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"الحزم على وسيط التثبيت مسجله بهذا المفتاح. مستودعات dnf ذات الصله هي " -"fedora، fedora-updates، لـ Fedora 7-9 و " -"core و core-updates لـ Fedora Core " -"(الإصدار 6 واقدم). إتطلع على http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html لمزيد عن المعلومات عن سبب قدم " -"هذا المفتاح." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 إختبار" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora إختبار" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"إذا كنت تشارك في إختبار الحزم، هذا هو المفتاح الذي ستستخدمه للتحقق من حزم " -"الإختبار. هذا المفتاح يقوم بتسجيل الحزم الموجوده في مستودع fedora-" -"testing. إتطلع على http://www.redhat.com/archives" -"/fedora-announce-list/2008-August/msg00012.html لمزيد من المعلومات عن " -"سبب قدم هذا المفتاح." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 إختبار" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 إختبار" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "24 فيدورا " - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "فيدورا 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora ملحقات" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"إذا كنت تستخدم ملحقات Fedora مع Fedora Core 6، إستخدم هذه الحزمه من مستودع " -"الملحقات. هذا المفتاح لن يكون صالحا للإستخدام بعد Fedora " -"Core 6 وعندما تبلغ الملحقات نهاية فترة الحياه (EOL) في (7 ديسمبر 2007). هذا " -"المفتاح غير مضمن مع حزم إصدارات-فيدورا في Fedora 7 والنسخ " -"اللاحقه." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "تراثي" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"هذه المفاتيح كانت تستخدم للحزم التي اصدرت من مشروع Fedora التراثي لتحديث " -"الإصدارات التي بلغت نهاية حياتها الرسميه. مشروع Fedora التراثي لم يعد " -"موجودا، وبالتالي هذا المفتاح لن يستخدم لتسجيل الحزم. هذا المفتاح غير مضمن في" -" حزم إصدار-فيدورا في Fedora 7 والإصدارات اللاحقه." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "الاسئلة المتداوله عن تسجيل الحزم" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "إعرف كيف يستخدم Fedora مفاتيح GPG لتسجيل الحزم لضمان امانك." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "كيف يقوم مشروع Fedora بإستخدام مفاتيح GPG لتسجيل الحزم ؟" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"اي حزمة RPM مستقره تم نشرها من قبل مشروع Fedora مسجله بتوقيع GPG. حيث يقوم " -"dnf و ادوات التحديث ذات الواجهات الرسميه بالتأكد من هذه التواقيع ورفض تثبيت " -"اي حزمه غير مسجله او تحتوي على توقيع سئ. يجب عليك دائما التحقق من توقيع " -"الحزمه قبل تثبيتها. هذه التواقيع تضمن ان الحزم التي تقوم بتثبيتها هي التي تم" -" إنشائها من قبل مشروع Fedora ولم يتم التلاعب بها (عن طريق الخطأ او بصوره " -"مقصوده) من قبل اي موقع يقوم بتوفير الحزمه." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"الحزم الني يمكن تحميلها من نظام البناء Koji لاتحتوي على تواقيع، وبالتالي " -"عليك إستخدامهم بحذر. وكذلك الحزم الجديده والتي قد تسبب مشاكل (bleeding-edge)" -" في مستودع الحزم الخامه (Rawhide) ليس من الضروره ان تكون مسجله." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "إستيراد المفاتيح" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"المفاتيح مضمنه في حزمة إصدار-فيدورا، يمكنك إيجادها في " -"المسار /etc/pki/rpm-gpg. لابد من الإشاره إلى ان ليس كل " -"المفاتيح في المسار مستخدمه من قبل مشروع Fedora -- بعض المفاتيح مستخدمه " -"لتسجيل حزم Red Hat Enterprise Linux وهي غير مستخدمه على الإطلاق. إذا كنت " -"تستخدم حزم Red Hat Enterprise Linux إتطلع على https://www.redhat.com/security/team/key. المفاتيح المستخدمه" -" من قبل Fedora متاحه في إعدادات المستودعات الخاصه بـ dnf، عموما ليس هنالك " -"حاجه لإستيرادهم يدويا إلى قاعدة بيانات rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"بالإضافه إلى حزم إصدار-فيدورا وهذه الصفحه، يمكنك تحميل مفاتيح Fedora من خادم" -" للمفاتيح العامه، على سبيل المثال keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"في بعض المستودعات، كالمستودعات التي تحوي خزم مستقره وقيد التجربه في " -"الإعدادات الإفتراضيه، dnf يستطيع ان يجد المفتاح المناسب " -"للمستودع وطلب الموافقه من المستخدم لإستيراد المفتاح إذا لم يكن موجودا في " -"قاعدة بيانات rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "يمكنك إستيراد مفاتيح فيدورا إلى جهازك باستخدام الأمر التالى :" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "إستعرض دليل RPM لمعلومات مفصلة." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"إذا كنت تريد التأكد من ان المفاتيح المثبته على نظامك تطابق المفاتيح المذكوره" -" هنا، قم بإستخدام GnuPG للتحقق من تطابق بصمة المفاتيح، على سبيل المثال :" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "سهل الإداره" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "خدمات قواعد البيانات" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "هل انت مستعد لتجربة Fedora Server ؟" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "تحميل فيدروا للخادم" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Fedora Server %(rel)s تحميل" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "نسخة التثبيت 64-بت %s جيجا بابت" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"نسخة التثبيت الخاصه بـ Fedora Server تسمح لك بإنشاء وسيط لجهاز الكمبيوتر " -"يقوم بالإقلاع إلى نظام التثبيت لتثبيت Fedora Server مباشرة على القرص الصلب" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"لإستخدام هذه النسخه تحتاج إلى محرك اقراص يستطيع \"حرق\" اسطوانات دي في دي " -"او فلاش على الاقل بحجم هذه النسخه." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "نسخة 64-بت %s ميجا بايت" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Fedora إحصل على المزيد من" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® تقنية" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "كيفية تحويل النسخه الحيه إلى وسيط قابل للإقلاع ؟" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"بعد تحميل النسخه، سوف تقوم بإنشاء وسيط قابل للإقلاع منها إما بـ حرق النسخه على قرص دي في دي فارغ او كتابة " -"النسخه على ذاكرة فلاش." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "كيف اقوم بالإقلاغ من الوسيط ؟" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"قم بالرجوع للتوثيق الخاص بنظام الكمبيوتر الخاص بك لمعرفة الإجراءات اللازمة " -"للإقلاع من وسيط غير القرص الصلب. العملية قد تختلف بناء على المصنع والموديل " -"الخاص بجهازك. قد تجد هذه التوصيات العامه مفيده." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Fedora %(rel)s %(state)s Server تحميل" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "وسيط التثبيت 64-بت %s جيجا بايت" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"هذا الإصدار عباره عن إصدار اولي وهو مدعوم من قبل ٍServer Working Group. رجاء قم بتوجيه تساؤلاتك إلى" -" قائمتهم البريديه او %(team_irc)s على " -"freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"إقرأ ملحوظات الإصدار لمعلومات اكثر عن " -"التغييرات والمميزات الجديده، وصفحة الأخطاء " -"الشائعه لمعلمومات عن المتكرره عامة وكيفية تجنبها." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "متى سيتم إصدار نسخة Fedora %s ؟" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "هذه هي نسخة سطح المكتب من لينكس التي كنت تنتظرها." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"نظام التشغيل Fedora Workstation يعتمد عليه، سهل الإستخدام وقوي لجهاز " -"الكمبيوتر المكتبي والمحمول. يدعم نطاق واسع من المطورين، من الهواة والطلبه " -"وحتى المحترفين في بيئات عمل كبيره." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"” الكم الهائل من الادوات والتي يوفرها
Fedora تسمح لي بإنجاز مهامي. ببساطه إنه يعمل.“" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "مهندس اداء لـ JVM (نظام اﻵله الإفتراضي لجافا) " - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "واجهة مستخدم منتظمه" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"ركز على كتابة الكود مع بيئة GNOME 3 لسطح المكتب. تم بناء GNOME مع ارآء " -"المطورين ولتقليل تشتيت الانتباه، حتى تستطيع التركيز على ما هو اهم." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "صندوق ادوات كامل ومفتوح المصدر" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"تخطى ان تقحم نفسك في البحث وبناء الادوات التي تحتاجها. مع مجموعة Fedora " -"الكامله ومفتوحة المصدر للغات، الادوات والخدمات، كل شئ على بعد ضغطة زر او امر" -" في موجه الاوامر. هنالك ايضا استضافة مشاريع ومستودعات كـ COPR لتجعل شفرتك " -"البرمجيه وبرامجك متوفره بسرعه للمجتمع." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "صناديق GNOME وأدوات محاكاه اخرى" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "دعم Docker المضمن" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "هل انت مستعد لتجربة فيدورا لسطح المكتب ؟" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "تحميل فيدورا لسطح المكتب" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "تحميل فيدورا %(rel)s لسطح المكتب" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "الصوره الحيه %s جيجا بايت 32-بت" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "نسخ التثبيت عن طريق الإنترنت (Netinstall) :" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "نسخة 32-بت %s ميجا بايت" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "منسوجات فيدورا" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "لابات فيدورا" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "تحميل فيدورا %s لسطح المكتب" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "تحميل فيدورا %(rel)s %(state)s لسطح المكتب" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"هذا الإصدار عباره عن إصدار اولي وهو مدعوم من قبل Workstation Working Group. رجاء قم بتوجيه تساؤلاتك" -" إلى قائمتهم البريديه او %(team_irc)s على " -"freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "فيدورا %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "معماريه" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "المستودع الرئيسي" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "(AMI) إبدا مثال نسخ امازون للآله" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "قم بإختيار المنطقه الاقرب" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "(x86_64) 64-بت" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "(i386) 32-بت" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "قم بالتشغيل!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "بالضغط على وتحميل فيدورا، انت توافق على الشروط والاحكام التاليه." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "إقرأ اكثر >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "حول" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "حوال فيدورا" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "الرعاه" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "مجلة فيدورا" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "الحقوق القانونيه" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "إحصل على فيدورا لسطح المكتب" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "إحصل على فيدورا للخادم" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "ARM® فيدورا" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "دعم" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "إحصل على المساعده" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "إسأل فيدورا" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "أخطاء شائعة" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "بوابة تطوير فيدورا" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "دليل التثبيت" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "انضم" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "إنضم لفيدورا" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "كوكب فيدورا" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "مجموعات الإهتمام الخاصه لفيدورا" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "نظام حساب فيدورا" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "مجتمع فيدورا" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "فيدورا مدعوم من قبل ريدهات." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "إعرف اكثر عن العلاقه بين فيدورا وريدهات >" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "جميع الحقوق محفوظه، ريدهات وآخرون %(year)s ©" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "تغير اللغة" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "موافق" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "خفيف. متمكن، جاهز لأي بيئه سحابيه." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "آخر واحدث تقنيه. أسس ثايته. معا، من اجل تطبيقاتك و خدماتك." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "التوثيق والموارد الاخرى" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "طرق اخرى للحصول على الوسيط" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"يمكنك شراء وسيط التثبيت لفيدورا من الموزعين المتوفرين على " -"شبكة الانترنت او من الموزعين المحليين في منطقتك." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"لا يمكنك تحمل تكلفة وسيط التثبيت ؟ إطلب وسيط تثبيت فيدورا من برنامج الوسائط المجانيه من فيدورا." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG معلومات مفتاح" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "رقم تعريف المفتاح" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "بصمه" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "رقم تعريف المستخدم" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "فرعي" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "إحصل عليه من :" diff --git a/getfedora.org/po/as.po b/getfedora.org/po/as.po deleted file mode 100644 index f243752..0000000 --- a/getfedora.org/po/as.po +++ /dev/null @@ -1,2441 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:22-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: as\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora পোষকতা কৰা" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "ইয়াৰ পিছত, Fedora ৰ GPG চাবি(সমূহ) আমদানি কৰক:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "এতিয়া, CHECKSUM নথিপত্ৰ বৈধ হোৱা পৰীক্ষা কৰক:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM নথিপত্ৰত ইয়াৰ যিকোনো এটা চাবিৰ পৰা এটা ভাল চহি হ'ব লাগিব:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "আপুনি দিয়া URL পুনঃ পৰীক্ষা কৰক । আপুনি ঠিক ভাবে নকল কৰিছিল নে?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "চাবি আমদানি কৰক" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "তলৰ আদেশেৰে আপুনি এটা চাবি RPM ৰ database লৈ নিজে আমদানি কৰিব পাৰে:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "অধিক তথ্যৰ বাবে rpm হাতপুথি চাওক ।" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"যদি আপোনাৰ ব্যৱস্থাপ্ৰণালীৰ আৰু ইয়াত তালিকাভূক্ত কৰা চাবি মিলাব খোজে, আপুনি " -"তাৰ বাবে GnuPG ব্যৱহাৰ কৰিব পাৰে । যেনে:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "বিষয়ে" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "পোষকতা কৰা" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "সহায় পাওক" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora ত সংযোজিত হওক" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ast.po b/getfedora.org/po/ast.po deleted file mode 100644 index 834d177..0000000 --- a/getfedora.org/po/ast.po +++ /dev/null @@ -1,2447 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:22-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: ast\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Dempués, importa la contraseña GPG de Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Agora, verifica que'l ficheru CHECKSUM seya válidu:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"El ficheru CHECKSUM tien de tener una bona robla de dalguna de les " -"siguientes claves:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Descargues" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Chequea nuevamente el URL si lu ingresasti manualmente. Copiástelu correcho?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Cómo usa'l Proyeutu Fedora les claves GPG pa roblar paquetes?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importando claves" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Siempre se puede importar a mano una contraseña a la base de datos RPM " -"usando'l siguiente comandu:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Empobina pal manual de rpm pa más información." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Si quies verificar que les claves que s'instalaron nel sistema son asemeyaes" -" a les llistaes equí, puedes usar GnuPG pa chequear que la buelga de " -"contraseña concasa. Por exemplu:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Tocante a Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Sofitu" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obtener Aida" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guía d'Instalación" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Xunise" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Xunise a Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunidá Fedora." - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/az.po b/getfedora.org/po/az.po deleted file mode 100644 index 77ca029..0000000 --- a/getfedora.org/po/az.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora-web/language/az/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: az\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/bal.po b/getfedora.org/po/bal.po deleted file mode 100644 index b3460ad..0000000 --- a/getfedora.org/po/bal.po +++ /dev/null @@ -1,2441 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:22-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: bal\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "فدورای امدادکنوکاں" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "اگه شما URL دستی وارد کته دگه کنترل بکنیت. آیا آیای درست کپی کته؟" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "کلیدانا وارد کنگنت" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"شما دایم تونیت یک کلیدی دستی وارد پایگاه داده RPM کنیت گون رند گرگ جهلیگین " -"دستور:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "مراجعه کنیت په rpm دستور العمل په گیشترین اطلاعات" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "باره" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "امداد کنوکان" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "هور فدورا بوگ" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/be.po b/getfedora.org/po/be.po deleted file mode 100644 index 5e0ffad..0000000 --- a/getfedora.org/po/be.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Belarusian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be\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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/bg.po b/getfedora.org/po/bg.po deleted file mode 100644 index b560bf7..0000000 --- a/getfedora.org/po/bg.po +++ /dev/null @@ -1,2752 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Valentin Laskov , 2014 -# Valentin Laskov , 2015. #zanata -# Kiril L , 2016. #zanata -# Valentin Laskov , 2016. #zanata -# Valentin Laskov , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-04-27 02:45-0400\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" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Кодекс за поведение във Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora - Кодекс за поведение" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Бидейки член на общността, спазвайте Кодекса за поведение." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Кодекс за поведение" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Обществото Fedora се състои от професионалисти и доброволци от целия свят, " -"работещи върху всеки от аспектите на дистрибуцията - от програмирането до " -"разпространението. Разнообразието е една от нашите силни страни, но това " -"понякога води до проблеми в общуването и до неудовлетвореност. За тази цел " -"ние имаме няколко основни правила и искаме хората да се придържат към тях, " -"когато използват ресурсите на проекта." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Това не е изчерпателен списък на неща, които не можете да правите. По-скоро," -" приемете го в духа, в който е предназначен - ръководство, улесняващо ни да " -"бъдем полезни един към друг." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Бъдете внимателни. Вашата работа ще се използва от други хора и вие от своя " -"страна ще зависите от работата на други. Всяко решение, което вземете, ще се" -" отрази на потребители и колеги, и Вие трябва да имате това предвид при " -"вземането на решения." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Уважавайте се. Не всички от нас ще се съгласяват винаги, но несъгласието не " -"е извинение за лошо поведение и лоши маниери. Всеки от нас може да изпита " -"чувство на известна неудовлетвореност сега или в бъдеще, но не можем да " -"позволим това чувство на неудовлетвореност да е причина за лична атака. " -"Важно е да запомните, че една общност, където хората се чувстват неудобно " -"или подтиснати, не е продуктивна. Членовете на Общността Fedora трябва да " -"бъдат почтителни както във връзките си с други сътрудници, така и с хора " -"извън Общността, а също и с потребителите на Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Когато не сме съгласни, ние се опитваме да разберем защо. Разногласия, както" -" социални, така и технически, се случват постоянно, и Fedora не прави " -"изключение. Важно е ние да разрешаваме споровете и различията във възгледите" -" конструктивно." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Помнете, че ние сме различни. Силата на Fedora идва от разнообразието на " -"общността, хора с широк кръг от интереси. Различните хора имат различни " -"гледни точки по въпросите. Невъзможността да се разбере, защо някой държи на" -" дадена гледна точка, не означава, че е грешна. Не забравяйте, че е човешко " -"да се греши и ако се обвиняваме един друг, това няма да ни доведе до никъде," -" вместо предложенията, помагащи при разрешаването на проблеми и помощта да " -"се учим от грешките." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Вземете Fedora: свалете Linux-базираната ни OS за десктоп на разработчици, " -"работа с контейнери и други" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Изберете Свободата. Изберете Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"По-малко настройки, повече новости. Изберете насочена

към " -"нуждите Ви Fedora и започнете работа веднага." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s излезе! Пробвайте я от секцията за" -" сваляне." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Излезе Fedora %(rel)s ! Вземете я сега." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Работна станция" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Свалете сега" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation е блестяща, лесна за ползване операционна система за " -"лаптопи и настолни компютри с пълен набор инструменти за разработчици и " -"творци от всякакъв тип." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Свалете сега" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Сървър" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server е мощна, гъвкава операционна система, включваща най-доброто и " -"най-новото от технологиите за центрове за данни. Тя Ви предоставя контрол " -"над цялата Ви инфраструктура и услуги." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic предоставя най-добрата платформа за Вашият Linux-Docker-" -"Kubernetes (LDK) стек приложения." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora е винаги свободна за употреба от всеки, за модифициране и " -"разпространение. Тя е създадена и използвана от хора от целия свят, които " -"работят заедно като общност: това е Проектът Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Искате още варианти на Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Общността Fedora издава също и ARM образи, различни живи " -"разновидности и други варианти на Fedora, предназначени да покрият " -"специфични изисквания. Разгледайте ги на страницата Fedora Разновидности или на " -"Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Бъдете свързани и информирани." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Искате да се включите? Вижте" -" какво се случва в общността. Прочетете " -"последните новини и интересни неща в Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Четете документацията." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Вижте Бележките към изданието за подробна информация за текущата версия. За " -"да научите повече за това как да ползвате Fedora и подробности като напр. " -"изискванията към системата, вижте официалната " -"документация." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Помощ." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Имате нужда от помощ за Fedora? Проверете в Питай Fedora," -" където ще намерите архив на зададени от други потребители въпроси, а може и" -" да зададете ваш въпрос." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Спонсори на Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Проектът Fedora е горд да има за спонсори следните организации..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Основен Спонсор" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. е основният спонсор на Проекта Fedora, като" -" предоставя многообразни ресурси, включително поддръжка на служители на " -"пълен работен ден, инфраструктурен хардуер и широколентов достъп, " -"финансиране на събития и правна помощ." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Проектът Fedora благодари също и на следните спонсори за голямата подкрепа:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Интересувате се от спонсориране на нещо за Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Свържете се с admin@fedoraproject.org или се " -"отбийте в #fedora-admin на " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Проверете сваления от Вас образ" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM и инструкции за проверка" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Как да проверя образа?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"След като сте свалили вече образа, проверете неговата цялост и сигурност. " -"За да го направите, първо свалете съответния файл CHECKSUM в същата " -"директория, където е образа." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "За 64 битови образи" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "За 32 битови образи" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "За Atomic Host Iso" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "За Atomic Host образи" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Следваща стъпка – импортирайте GPG ключа (ключовете) на Fedora" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Може да проверите GPG ключа (ключовете) ето тук." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Сега, уверете се, че CHECKSUM файлът е валиден:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM файлът би трябвало да има добър подпис от някой от следните " -"ключове:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 за други архитектури (AArch64, PPC64, PPC64le, s390 and s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Накрая, след като CHECKSUM файлът е проверен, проверете дали контролната " -"сума на образа съвпада:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "Ако според резултата файлът е валиден, той е готов за употреба!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Как да проверя сваления образ върху друга операционна система?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Внедрявайте и преоразмерявайте контейнерните си приложения с непроменяща се " -"инфраструктура." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Свалете или стартирайте в публичен облак" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Chief Architect, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host от Проекта Atomic е олекотена, неизменна платформа, създадана с " -"единствената цел за стартиране на контейнерни приложения." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Версията на Atomic Host във Fedora ползва същите хранилища за пакети като " -"Fedora Server и предоставя последните версии на Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree обновления" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Автоматични обновления на системата Ви от последния в ъпстрийма OStree. " -"Уеднаквявате сървърите си, а при проблем, лесно се връщате към предишна " -"версия." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Управлявате Docker контейнери, системни контейнери, Atomic приложения и още " -"други от един удобен инструмент с команден ред." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Оптимизирано за Kubernetes и OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Създавате Kubernetes или Origin клъстер, за да стартирате Вашите контейнерни" -" приложения? Стартирайте ги върху Fedora Atomic, предоставяща Ви нужната " -"платформа върху малка, икономична OS." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Готови ли сте да пробвате Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Благодарим, че сваляте Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Изтеглянето трябва да започне до няколко секунди. Ако не, цъкнете върху " -"връзката по-долу:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Проверете сваленото от Вас!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"След като сте свалили вече образа, проверете неговата цялост и сигурност. " -"За да го направите, първо свалете съответния файл CHECKSUM в същата " -"директория, където е образа и следвайте тези " -"инструкции." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Свалете Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Свалете Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host се обновява почти на всеки 2 седмици." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Създаденото през последните две седмици не премина тестовете ни. Наличните " -"образи са отпреди повече от %(atomic_age)s дни. Вижте блога на проекта " -"Atomic за новости и информация относно бъговете, спиращи Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Това са последните официални Fedora Atomic Host образи, създадени преди " -"%(atomic_age)s дни." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host образи" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host e базова операционна система на острието на бръснача, " -"следваща модела Project Atomic. Тя е проектирана за Kubernetes и " -"контейнери. Публикуваните тук образи са показали, че работят. Имайте " -"предвид, че те са преминали няколко нива на автоматични тестове." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Моля, тествайте преди да използвате нови версии в реална " -"работа. Ако все пак откриете проблем, Atomic Host инструментите " -"улесняват връщането към предишна версия — и ако това се случи, моля " -"помогнете ни чрез уведомление за грешка или предлагане на корекции." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Образите Fedora Atomic Host се обновяват приблизително на всеки две " -"седмици, а не с главния шестмесечен ритъм на Fedora. Тъй като " -"развитието се движи бързо, поддържа се само последната основна версия на " -"Fedora." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Имайте предвид, че различни Fedora Atomic Host медии са обект на " -"различни нива автоматични тестове. Може да научите повече относно " -"проекта Atomic на projectatomic.io, а на " -"тази страница ще видите текущото състояние на тестовете." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host образи за Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Препратките по-долу Ви предоставят списъци на наличните Atomic Host Hardware" -" Virtual Machine (HVM) AMI по региони с бутони, за да ги стартирате във " -"Вашия Amazon Web Services акаунт. Налични са също и AMI ID за работа с AWS " -"Конзола или инструменти от командния ред." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 формат" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Затвори" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Регион" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Стартиране" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Статдартен формат" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Статдартен формат" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host образи за Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox образ" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Свалете сега!" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM образ" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"За повече информация относно стартирането на Vagrant във Fedora Workstation," -" вижте нашата уики страница." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 образ" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-битов %sMB Qcow2 образ" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw образ" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-битов %sMB xz-компресиран Raw образ" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Други неща за сваляне" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Пробвайте предварително издание" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Ние работим върху нашето следващо издание." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Помогнете ни да подготвим F%(rel)s !" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Как да тествате предварителните издания?" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ресурси" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Проверете" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Проверете Вашия образ" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Всички проблеми или грешки трябва да бъдат докладвани чрез Red Hat Bugzilla. Проектът Fedora не дава никакви гаранции " -"за годност или полезност." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Страницата не е намерена" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Ненамерена страница" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Молим да ни извините, но желаният от Вас файл или страница не беше намерен." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Идеи за решаване на проблема" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Ако ръчно сте изписали URL адреса, проверете за грешки. А може би не сте го " -"копирали правилно?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Грешна препратка? Пишете на the webmaster и обяснете коя " -"препратка Ви доведе тук." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Страницата или файлът може да е била преместена. Проверете в основния сайт или потърсете в уикито." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Ключове за подписване на пакети" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Това са публичните GPG ключове, използвани за подписване на пакети във " -"Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Научете как Fedora Ви защитава." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora използва GPG подписване на пакетите, за да гарантира интегритета им и" -" това, че не са компрометирани." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Вижте ЧЗВ, за да научите повече »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Актуални ключове" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Първичен" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Вторичен" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Търсите остарели ключове?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Остарели ключове за подписване на пакети" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Това са остарелите, неизползвани вече публични GPG ключове за подписване на " -"пакети във Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Стари и неизползвани ключове" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG ключ" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Пакетите на инсталационни носители се подписват с този ключ. Съответните dnf" -" хранилища са fedora, fedora-updates за " -"Fedora 7-9 и core и core-updates за Fedora" -" Core (Версия 6 и по-ранни). На http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html ще намерите информация защо този" -" ключ е излязъл от употреба." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 тестова" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora тестова" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Ако участвате в тестването на пакетите, ще трябва да ползвате този ключ, за " -"да проверите тест пакетите. Ключът подписва пакетите, които са в хранилището" -" fedora-testing. На http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html ще намерите информация защо този" -" ключ е остарял." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 тестови" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 тестова" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Ако използвате Fedora Extras с Fedora Core 6, ползвайте този пакет от " -"extras хранилището. Този ключ вече не се използва след като" -" Fedora Core 6 и Extras излязоха от употреба на 7-ми Декември 2007 г. Този " -"ключ не е включен в пакета fedora-release във Fedora 7 и " -"по-късни версии." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Наследени" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Този ключ беше използван за пакети, издадени от Проекта Fedora Legacy за " -"актуализиране на издания, достигнали официалния край на съществуването си. " -"Проектът Fedora Legacy вече не съществува, затова и с този ключ повече няма " -"да се подписват пакети. Този ключ не е включен в пакета fedora-" -"release във Fedora 7 и по-късни версии." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "ЧЗВ относно подписването на пакети" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Научете как Fedora употребява GPG подписването на пакети, за да гарантира " -"Вашата сигурност." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Как Проект Fedora използва GPG ключове за подписване на пакети?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Всеки стабилен RPM пакет, издаден от Проекта Fedora има GPG подпис. По " -"подразбиране dnf и инструментите за графични ъпдейти удостоверяват този " -"подпис и отказват да инсталират пакет, който няма подпис или подписът е " -"невалиден. Непременно удостоверявайте подписа на даден пакет преди да го " -"инсталирате. Подписът гарантира, че пакетът, който ще инсталирате, е точно " -"пакетът създаден от Проекта Fedora и никое от огледалата или страниците, " -"които го разпространяват, не са го променяли – случайно или със зла умисъл. " - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Пакетите, свалени от системата Koji не съдържат подпис, затова трябва да си " -"служите внимателно с тях. Най-новите пакети от Rawhide също не винаги са " -"подписани." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Внасяне на ключове" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Ключовете, включени в издадените от Fedora пакети, можете " -"да намерите в директория /etc/pki/rpm-gpg. Обърнете " -"внимание – не всички ключове в тази директория се ползват от Проект Fedora. " -"Някои се използват от Red Hat Enterprise Linux за подписване на пакети или " -"вече не се използват изобщо. Ако Вие работите с Red Hat Enterprise Linux " -"вижте https://www.redhat.com/security/team/key. " -"Ключовете, ползвани от Fedora, са зададени в конфигурацията на хранилищата " -"на dnf, което означава, че няма нужда да ги внасяте ръчно в rpm базата " -"данни." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Освен от пакетите, издадени от Fedora и от тази страница, можете да свалите " -"Fedora ключовете от обществен сървър, например keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"За някои хранилища, например такива, които съдържат стабилни и тест пакети в" -" конфигурацията по подразбиране, dnf може да намери " -"подходящ ключ за архива и да поиска от потребителя потвърждение преди да го " -"импортира, в случай че в rpm базата няма вече такъв ключ." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Винаги можете ръчно да импортирате ключ в RPM базата чрез следната команда:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Обърнете се към rpm ръководството за повече информация." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Ако искате да проверите дали ключовете, инсталирани във Вашата система, " -"съответстват на ключовете изброени тук, можете да използвате GnuPG, за да " -"сравните отпечатъка на ключа. Например:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Сървър" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Лесно администриране" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Улеснено управление на системата с мощния, модерен интерфейс на Cockpit. " -"Наблюдение и контрол над производителността и състоянието, прилагане и " -"управление на контейнерно-базирани услуги." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora сървър включва един мащабируем сървър за бази данни от корпоративен " -"клас, задвижван от PostgreSQL проекта с отворен код." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Готови ли сте да пробвате Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Свалете Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Свалете Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-битов %sGB инсталационен образ" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Чрез инсталационния образ Fedora Server може да направите медия за Вашия " -"компютър, от която да заредите инсталатор, който ще инсталира Fedora Server " -"директно на твърдия Ви диск" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"За да ползвате този образ ще имате нужда от устройство, което може да " -"записва DVD-та, или от USB флаш памет с обем поне колкото образа." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall образ:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-битов %sMB образ" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Свалете F%(rel)s Alpha образи" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Свалете F%(rel)s Beta образи" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Още от Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® Технологии" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Как мога да превърна живия образ в зареждаща медия?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"След като свалите образа, може да направите стартираща го медия. Може да запишете образа на празен DVD диск, или да запишете образа на USB памет." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Как да заредя от медията?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Консултирайте се с документацията на системата за начина на зареждане от " -"медия, различна от вградения твърд диск. Процедурата е различна в зависимост" -" от производителя и модела на компютъра. Тези съвети може " -"да са Ви полезни." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Сваляне на Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-битов %sGB инсталационен образ" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Това е предварителна версия на софтуера и се поддържа от Server Working Group. Моля, отправяйте въпросите " -"си към техния пощенски списък или %(team_irc)s" -" във freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"За повече информация за промени и нови функционалности, прочетете Бележките към изданието, както и страницата Известни проблеми с информация за откритите" -" грешки и начини за избягването им." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Кога ще излезе Fedora %s ?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"След като сте свалили вече образа, проверете неговата цялост и сигурност. " -"За да го направите, първо свалете файла CHECKSUM по-долу в същата " -"директория, където е образа и следвайте тези " -"инструкции." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Това е Linux работният плот, който очаквахте." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation е надеждна, лесна за употреба и мощна операционна система" -" за Вашия преносим или настолен компютър. Тя е предназначена за широк кръг " -"разработчици, от любители и студенти, до професионалисти в корпоративна " -"среда." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM инженер по производителността" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Лъскав потребителски интерфейс" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Фокусирайте се върху работата си в работната среда на GNOME 3. GNOME е " -"създаден с отчитане мненията на разработчиците и минимизира причините, които" -" може да Ви разсейват." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes и други инструменти за виртуализация" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Вградена поддръжка на Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Готови ли сте да пробвате Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Свалете Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Свалете Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer за Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO for Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer за Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Нуждаете се от инструкции? Или друга версия?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Стартиране на Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (свалете от връзката по-горе)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "USB Flash памет с поне %s GB свободно пространство" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Освен това, Вие може да инсталирате Fedora Workstation на лаптоп или на " -"стационарен компютър с поне 1 GHz процесор, 1 GB RAM и 10 GB свободно " -"пространство. За да го направите, на компютъра, на който искате да я " -"инсталирате, стартирайте живата версия на Fedora Workstation от USB " -"флашката. Стартирайте приложението Fedora Media Writer и следвайте " -"указанията на екрана, за да извършите инсталирането." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Поддържани платформи" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer поддържа следните платформи:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Автоматично установихме, че използвате Mac OS X и затова Ви" -" предлагаме тази версия за сваляне. Ако сме сгрешили в определянето на " -"Вашата операционна система, или искате да свалите различна версия, моля " -"цъкнете върху \"Всички платформи за сваляне\" по-долу." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Автоматично установихме, че използвате Linux и затова Ви " -"предлагаме тази версия за сваляне. Ако сме сгрешили в определянето на Вашата" -" операционна система, или искате да свалите различна версия, моля цъкнете " -"върху \"Всички платформи за сваляне\" по-долу." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Автоматично установихме, че използвате Windows и затова Ви " -"предлагаме тази версия за сваляне. Ако сме сгрешили в определянето на Вашата" -" операционна система, или искате да свалите различна версия, моля цъкнете " -"върху \"Всички платформи за сваляне\" по-долу." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Всички платформи за сваляне" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Налични чрез DNF за Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Още подробности" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Как да използвам това ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Проверете този образ" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-битов %sGB Жив образ" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-битов %sGB Жив образ" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall образи:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-битов %sMB образ" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Научете за промените след последната версия на Fedora, както и минималните " -"изисквания и препоръки за работа с Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Препоръчваме Ви да го прегледате преди да инсталирате на Вашата система, тъй" -" като в него ще намерите отговори на много често задавани въпроси." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Забелязани бъгове" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Чудесен ресурс за консултация, в случай на проблеми при инсталиране и работа" -" с Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Какво е \"Жива\" (\"Live\")?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer ще създаде пълен, работещ Fedora Workstation, който може" -" да стартирате веднага от USB памет. Може да използвате живия образ, за да " -"тествате и разцъкате Fedora без да правите промени върху твърдия Ви диск." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -" Когато решите, Вие можете да инсталирате Fedora на твърдия Ви диск от тази " -"\"жива\" версия на Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Разновидности" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Сваляне на Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Сваляне на Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Това е предварителна версия на софтуера и се поддържа от Workstation Working Group. Моля, отправяйте " -"въпросите си към техния пощенски списък или " -"%(team_irc)s във freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Работа с предварителни версии на Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"За да стартирате предварителна версия на Fedora Workstation, Вие ще трябва " -"да:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Налично за сваляне по-долу)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Жив ISO образ на предварителна версия на Fedora, която " -"искате да стартирате" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ВНИМАНИЕ: Тази процедура унищожава всички данни на USB устройството. Убедете" -" се, че сте съхранили другаде всички важни файлове, преди да направите това." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Свалете приложението Fedora Media Writer по-долу." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Свалете желания ISO образ." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Стартирайте Fedora Media Writer. Може да се наложи да въведете парола, за да" -" дадете на приложението нужните му права." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Изберете \"Custom OS...\" от списъка." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "На страницата за избор на OS цъкнете бутона \"Изберете живо ISO\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"В прозореца за избор на файл намерете и изберете ISO образа, който сте " -"свалили." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Включете USB устройството в компютъра. Ако сте ползвали това USB устройство " -"и преди за създаване на жива медия, може да се наложи да възстановите " -"фабричните му настройки. В този случай приложението ще Ви попита дали да го " -"направите." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Цъкнете \"Създай живо USB\", за да запишете образа. Изчакайте процесът да " -"завърши преди да извадите устройството и да затворите приложението." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Как да тествате предв. издания" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Упътване как да помогнете за тестването на предварителни версии на Fedora в " -"уикито на Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Архитектура" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Стартиране на AMI instance" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Изберете най-близъкия регион" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Стартирай го!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Експортни правила" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Прочетете пълните експортни правила" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"С цъкването на препратката и свалянето на Fedora, Вие се съгласявате да се " -"съобразявате със следните правила и условия." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Прочетете повече >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Относно" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "За Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Спонсори" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Правни" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Вземете Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Вземете Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Поддръжка" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Помощ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Питай Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Открити дефекти" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora портал за разработчици" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Ръководство за инсталиране" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Присъединяване" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Присъединете се към Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Планета Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora - Специални групи по интереси" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Система за акаунти на Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Общността Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora е спонсорирана от Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Прочетете повече за отношенията между Red Hat и Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. и други." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Смяна на езика" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Надеждна. Мощна. Готова за който и да е облак." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Най-новите технологии. Стабилна основа. Заедно, за Вашите приложения и " -"услуги." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Документация и други ресурси" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Други начини да се снабдите с медия" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Вие може да закупите инсталационна медия с Fedora от онлайн " -"доставчици или от доставчик близо до Вас." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Не можете да си позволите цената на инсталационния носител? Поръчайте " -"инсталационен носител за Fedora от Програмата Fedora на " -"безплатен носител." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Информация за GPG ключ" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Key ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingerprint" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Вземете го от:" diff --git a/getfedora.org/po/bn.po b/getfedora.org/po/bn.po deleted file mode 100644 index d0bcbb1..0000000 --- a/getfedora.org/po/bn.po +++ /dev/null @@ -1,2449 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:23-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "এর পরে, Fedora-র GPG-কি ইম্পোর্ট করুন:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"আপনি GPG key(s) এর বিস্তারিত যাচাই করতে পারেন এখানে।" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "এর পরে, পরীক্ষা করুন CHECKSUM ফাইল বৈধ কি না:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"নিম্নলিখিত যে কোনো একটি কি সহযোগে CHECKSUM ফাইলটি স্বাক্ষরিত হওয়া আবশ্যক:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ডাউনলোড" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "ফেডোরার প্রকল্প - পৃষ্ঠা পাওয়া যায়নি" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"URL-টি স্বয়ং লিখে থাকলে সেটি পুনরায় পরীক্ষা করুন। সঠিকরূপে URL-টি কপি করেছেন" -" কি?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "কি ইম্পোর্ট করার প্রণালী" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"নিম্নলিখিত কমান্ড সহযোগে, ব্যবহারকারী স্বয়ং RPM ডাটাবেসের মধ্যে কি ইম্পোর্ট " -"করতে পারবেন:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "অধিক বিবরণের জন্য rpm সহায়িকা পড়ুন।" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"আপনার সিস্টেমে ইনস্টল করা কি ও এইখানে উল্লিখিত কি-র মধ্যে বিসংগতি পরীক্ষা " -"করার জন্য GnuPG সহযোগে পরীক্ষা করতে পারবেন, কি-র ফিঙ্গারপ্রিন্টে কোনো গরমিল " -"রয়েছে কি না। উদাহরণস্বরূপ:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "ফেডোরা স্পিন" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "আইন আনয়ন" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "সম্পর্কিত" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "ফেডোরা সম্পর্কে" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "সমর্থন" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "সাহায্য প্রাপ্ত করুন" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "ফেডোরা সম্পর্কে প্রশ্ন করুন" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "সাধারণ বাগ" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "ইনস্টল করার গাইড" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "যোগদান" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora-এ যোগদান করুন" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "প্ল্যানেট ফেডোরা" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "ফেডোরা SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ফেডোরা অ্যাকাউন্ট সিস্টেম" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "ফেডোরা কমিউনিটি" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "ফেডোরা স্পন্সর করেছে রেড হ্যাট।" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ঠিক আছে" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/bn_IN.po b/getfedora.org/po/bn_IN.po deleted file mode 100644 index 7f14cb2..0000000 --- a/getfedora.org/po/bn_IN.po +++ /dev/null @@ -1,2447 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:23-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: bn-IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "এর পরে, Fedora-র GPG-কি ইম্পোর্ট করুন:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "এর পরে, পরীক্ষা করুন CHECKSUM ফাইল বৈধ কি না:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"নিম্নলিখিত যে কোনো একটি কি সহযোগে CHECKSUM ফাইলটি স্বাক্ষরিত হওয়া আবশ্যক:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ঘটনাবলী" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"URL-টি স্বয়ং লিখে থাকলে সেটি পুনরায় পরীক্ষা করুন। সঠিকরূপে URL-টি কপি করেছেন" -" কি?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "কি ইম্পোর্ট করার প্রণালী" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"নিম্নলিখিত কমান্ড সহযোগে, ব্যবহারকারী স্বয়ং RPM ডাটাবেসের মধ্যে কি ইম্পোর্ট " -"করতে পারবেন:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "অধিক বিবরণের জন্য rpm সহায়িকা পড়ুন।" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"আপনার সিস্টেমে ইনস্টল করা কি ও এইখানে উল্লিখিত কি-র মধ্যে বিসংগতি পরীক্ষা " -"করার জন্য GnuPG সহযোগে পরীক্ষা করতে পারবেন, কি-র ফিঙ্গারপ্রিন্টে কোনো গরমিল " -"রয়েছে কি না। উদাহরণস্বরূপ:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "পরিচিতি" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora পরিচিতি" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "সমর্থন" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "সাহায্য প্রাপ্ত করুন" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "যোগদান" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora-এ যোগদান করুন" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "প্ল্যানেট Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "fedora-র SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora-র অ্যাকাউন্ট সিস্টেম" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "fedora-র কমিউনিটি" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora Red Hat-র দ্বারা স্পন্সর করা হয়." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ok" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/bo.po b/getfedora.org/po/bo.po deleted file mode 100644 index 1cd5782..0000000 --- a/getfedora.org/po/bo.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Tibetan\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bo\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/br.po b/getfedora.org/po/br.po deleted file mode 100644 index a6a298c..0000000 --- a/getfedora.org/po/br.po +++ /dev/null @@ -1,2440 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:23-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: br\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Bezit un ezel a-feson eus ar gumuniezh, grit diouzh ar c'hod emzerc'hel." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Kod emzerc'hel" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Pellgargañ" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Stummoù personelaet Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Savouriezh" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Diwar-benn Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Paeroned" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Skoazell" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Bezañ skoazellet" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Goulenn digant Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Drein anavezet" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Sturlevr staliañ" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Kemer perzh" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Kemer perzh e Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planedenn Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Reizhiad kontoù Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Kumuniezh Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Paeroniet eo Fedora gant Red Hat" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Mat eo" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/brx.po b/getfedora.org/po/brx.po deleted file mode 100644 index b596507..0000000 --- a/getfedora.org/po/brx.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Bodo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: brx\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/bs.po b/getfedora.org/po/bs.po deleted file mode 100644 index b4b12b0..0000000 --- a/getfedora.org/po/bs.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Bosnian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ca.po b/getfedora.org/po/ca.po deleted file mode 100644 index b33ba6f..0000000 --- a/getfedora.org/po/ca.po +++ /dev/null @@ -1,2887 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Robert Antoni Buj i Gelonch , 2014 -# Robert Antoni Buj Gelonch , 2015. #zanata -# Robert Antoni Buj Gelonch , 2016. #zanata -# Robert Antoni Buj Gelonch , 2017. #zanata -# Robert Antoni Buj Gelonch , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-05 04:44-0400\n" -"Last-Translator: Robert Antoni Buj 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" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Codi de conducta de Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Codi de conducta de Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Comporteu-vos com un membre de la comunitat i seguiu el Codi de conducta." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Codi de conducta" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"La comunitat de Fedora està formada per la composició de professionals i " -"voluntaris d'arreu del món, treballant en cada aspecte de la distribució des" -" de la programació al màrqueting. La diversitat és una de les nostres " -"fortaleses, però també pot liderar la comunicació d'incidències i " -"insatisfaccions. Per a aquesta fita, tenim algunes regles bàsiques que " -"demanem a la gent a adherir-s'hi quan estiguin utilitzant els recursos del " -"projecte." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Aquest llistat no és un llistat exhaustiu de les coses que no podeu fer. Més" -" aviat, preneu-ho com la intenció en el qual està constituït - una guia per " -"facilitar la convivència correcta amb els altres." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Sigueu considerat. El vostre treball serà utilitzat per altres persones, i " -"al seu torn dependrà de la feina d'altres. Qualsevol decisió que prengueu " -"afectarà els usuaris i col·legues, i heu de tenir en compte les " -"conseqüències quan preneu les decisions." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Sigueu respectuós. No tots nosaltres estarem d'acord tot el temps, però el " -"desacord no és una excusa per al mal comportament i les males maneres. Tots " -"podem experimentar una mica de frustració de tant en tant, però no podem " -"permetre que la frustració es converteixi en un atac personal. És important " -"recordar que una comunitat on la gent se senti incòmoda o amenaçada no és " -"productiva. Els membres de la comunitat de Fedora han de ser respectuosos " -"quan tractin amb altres col·laboradors, així com amb les persones de fora de" -" la comunitat de Fedora i amb els usuaris de Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Quan no estem d'acord, tractem d'entendre per què. Els desacords, tant " -"socials com tècnics, ocorren en tot moment i Fedora no n'és l'excepció. És " -"important que resolguem els desacords i els diferents punts de vista de " -"manera constructiva." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Recordeu que som diferents. La força de Fedora ve de la seva comunitat " -"variada, gent amb un ampli ventall de formació. Diferents persones tenen " -"diferents punts de vista sobre qüestions. Ser incapaç d'entendre perquè " -"alguns tinguin un punt de vista no vol dir que estiguin equivocats. No " -"oblideu que errar és humà i culpar als altres no ens porta enlloc, millor " -"ajudeu a resoldre les incidències i ajudeu a aprendre dels errors." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Obtenir Fedora: baixeu el nostre SO basat en Linux per als desenvolupadors " -"d'escriptoris, execució en contenidors i molt més" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Trieu la llibertat. Trieu Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Menys configuració, més innovació. Trieu el tast de Fedora

que " -"s'adeqüi millor a les vostres necessitats, i poseu-vos a treballar " -"immediatament." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"S'ha alliberat Fedora %(rel)s %(state)s! Proveu-la en la " -"secció de baixades." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "S'ha alliberat Fedora %(rel)s! Obteniu-la ara." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Baixar ara" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation és un sistema operatiu fàcil d'utilitzar i està adaptat a" -" ordinadors portàtils i de sobretaula, amb un ampli ventall d'eines per a " -"desenvolupadors i creadors de tot tipus." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Baixar-ho ara" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server és un sistema operatiu potent i flexible que incorpora les " -"millors i darreres tecnologies de centres de dades. Us dóna el control de " -"tots els vostres serveis d'infraestructura." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic proporciona la millor pila d'aplicacions LDK (Linux-Docker-" -"Kubernetes)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora és sempre lliure perquè qualsevol la utilitzi, modifiqui o " -"distribueixi. És construïda i utilitzada per persones del llarg de tot el " -"globus que treballen com una comunitat: el Projecte Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Voleu més opcions de Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"La comunitat de Fedora també llança les imatges d'ARM, els Spins " -"autònoms alternatius, i altres variants de Fedora fetes a mida per a " -"requeriments específics. Exploreu-ho al lloc web de Fedora Spins o Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Estar connectat i informat." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Voleu involucrar-vos? " -"Voleu esbrinar el que està passant a la comunitat? Llegiu sobre" -" les últimes notícies i altres coses interessants a Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Llegir els documents." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Doneu un cop d'ull a les notes del llançament per obtenir informació " -"detallada sobre la versió actual. Per obtenir més informació sobre l'ús de " -"Fedora i els detalls com ara els requisits del sistema, consulteu la documentació oficial." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Obtenir ajuda." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Necessiteu algun cop de mà amb Fedora? Doneu un cop d'ull a Ask Fedora, on podreu llegir els arxius de les preguntes " -"dels altres usuaris, o fer la vostra pròpia pregunta." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Patrocinadors de Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"El Projecte Fedora està orgullós de tenir les següents organitzacions com a " -"patrocinadors..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Patrocinador principal" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. és el principal patrocinador del Projecte " -"Fedora, proporcionant una varietat de recursos, suport per part d'empleats a" -" temps complet, infraestructura de maquinari i amplada de banda, finançament" -" d'esdeveniments i assessorament legal." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"El Projecte Fedora també agraeix als següents patrocinadors pel suport " -"important que proporcionen:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Esteu interessat a patrocinar alguna cosa relacionada amb Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contacteu amb admin@fedoraproject.org o atureu-" -"vos per #fedora-admin a irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifiqueu la imatge que heu baixat" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Les instruccions del CHECKSUM i de la verificació" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Com verifico la meva imatge?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Un cop us hàgiu baixat una imatge, verifiqueu-la per motius de seguretat i " -"d'integritat. Per a verificar la vostra imatge, comenceu amb la baixada del " -"fitxer correcte CHECKSUM al mateix directori on us heu baixat la vostra " -"imatge." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Per a les imatges de 64 bits" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Per a les imatges de 32 bits" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Per a l'ISO d'Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Per a les imatges d'Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "A continuació, importeu les claus GPG de Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Aquí podeu verificar els detalls de les claus " -"GPG." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Ara, verifiqueu que el fitxer CHECKSUM és vàlid:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "El fitxer CHECKSUM hauria de tenir una de les següents claus vàlides:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Arquitectures secundàries de Fedora 26 (AArch64, PPC64, PPC64le, s390 i " -"s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Finalment, un cop el fitxer CHECKSUM ha estat verificat, comproveu que la " -"suma de verificació de l'ISO concordi:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Si la sortida indica que el fitxer és vàlid, llavors esteu preparat per " -"utilitzar-la!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Com verifico la imatge que he baixat en un altre sistema operatiu?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Llegiu-vos aquestes instruccions per verificar la vostra imatge." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Obtenir Fedora Atomic: la millor plataforma per a la vostra pila " -"d'aplicacions en contenidors" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Desplegueu i escaleu les vostres aplicacions en contenidors amb la " -"infraestructura immutable." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Baixar o llançar al núvol públic" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"«Vam optar per utilitzar Fedora Atomic com a la base per al nostre " -"llançament de Navops - La solució d'aprovisionament de clústers Kubernetes " -"perquè els nostres clients confien i ja treballen amb sistemes operatius de " -"Red Hat. Ens encanta l'aspecte immutable de Fedora Atomic, que és perfecte " -"per als entorns en contenidors.»" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Arquitecte en cap, Navops per Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host del projecte Atomic és una plataforma lleugera i immutable, que " -"està dissenyada amb l'únic propòsit d'executar aplicacions en contenidors." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"La versió de Fedora d'Atomic Host utilitza els mateixos dipòsits de paquets " -"que Fedora Server, i proporciona les últimes versions d'Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Actualitzacions OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Actualitzeu automàticament el vostre sistema a partir de l'últim OStree de " -"l'equip de desenvolupament. Feu que els vostres servidors siguin idèntics i " -"retrocediu fàcilment si hi ha un problema d'actualització." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Interfície de línia d'ordres d'Atomic" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Gestioneu els contenidors Docker, els contenidors del sistema, les " -"aplicacions Atomic, i més coses mitjançant una eina de línia d'ordres " -"adequada." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Està optimitzat per a Kubernetes i OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Construcció d'un clúster Kubernetes o Origin per executar les aplicacions en" -" contenidors? Executeu-ho a Fedora Atomic, el qual us proporciona la " -"plataforma que necessiteu en un sistema operatiu més petit i lleuger." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Esteu preparat per donar una oportunitat a Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Baixar Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Gràcies per baixar Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"La baixada hauria d'iniciar-se en pocs segons. Sí no fos així, feu clic a " -"l'enllaç de sota:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifiqueu la vostra baixada!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Un cop us hàgiu baixat una imatge, verifiqueu-la per motius de seguretat i " -"d'integritat. Per a verificar la vostra imatge, comenceu amb la baixada del " -"fitxer correcte CHECKSUM al mateix directori on us heu baixat la vostra " -"imatge i seguiu aquestes instruccions." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Verificar!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Baixar Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Baixar Fedora Cloud Atomic %(rel)s" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host es construeix més o menys cada 2 setmanes." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"L'última construcció bisetmanal no va complir amb els nostres criteris de " -"prova. Les imatges disponibles són de fa %(atomic_age)s dies. Comproveu el " -"blog del Projecte Atomic per actualitzacions i informació sobre els errors " -"bloquejants d'Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Aquestes són les últimes imatges oficials de Fedora Atomic Host, es van " -"produir fa %(atomic_age)s dies." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Imatges d'Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host és un sistema operatiu base capdavanter que segueix el " -"model del projecte Atomic. Està dissenyat al voltant dels contenidors de " -"Kubernetes i dels contenidors de Docker. Les imatges aquí publicades mostren" -" aquest treball. Recordeu que les imatges han passat diversos nivells de " -"proves automatitzades." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Si us plau, proveu-ho abans d'utilitzar les noves versions en " -"producció. Si així ho feu i descobriu un problema, les eines " -"d'Atomic Host fan que sigui fàcil el retorn a una versió anterior— i si això" -" passés, si us plau, també ens ajudaria amb l'emplenament d'errors de " -"programari o l'enviament de correccions." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Les imatges de Fedora Atomic Host s'actualitzen aproximadament cada " -"dues setmanes, en lloc dels sis mesos de la seqüència principal de " -"Fedora. Atès que el desenvolupament s'està movent ràpidament, únicament es " -"dóna suport a l'última versió major de Fedora." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Recordeu que els diferents mitjans de Fedora Atomic Host estan " -"subjectes a diferents nivells de proves automàtiques. Podeu " -"conèixer més detalls sobre el projecte Atomic a projectatomic.io, feu clic aquí per veure" -" l'estat actual de les proves." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Imatges d'Atomic Host per a Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Els enllaços de sota us proporcionaran els llistats dels Atomic Host en HVM " -"(Hardware Virtual Machine) dels AMI disponibles per regió amb botons per " -"llançar-los al vostre compte d'Amazon Web Services. També es proporcionen " -"els id. dels AMI per a l'ús amb la consola o la línia d'ordres de les eines " -"d'AWS." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Format GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"Els AMI en format GP2 utilitzen un emmagatzematge SSD més ràpid; utilitzeu " -"aquests AMI per a la velocitat, encara que tingueu en compte que els costos " -"d'emmagatzematge seran més elevats que l'estàndard." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "Els AMI en HVM GP2" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Tanca" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Els AMI en HVM de Fedora GP2 Atomic Host %(rel)s" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Regió" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "Id. AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Llançament" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "format estàndard)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Els AMI en format estàndard són més adequats si teniu dades amb poca " -"freqüència d'accés i voleu mantenir baix el cost de l'emmagatzematge." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Els AMI en HVM estàndard" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Els AMI en HVM de Fedora Standard Atomic Host %(rel)s" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Format estàndard" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Imatges d'Atomic Host per a Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Vagrant Boxes per a Fedora Atomic Host estan disponibles per als proveïdors " -"VirtualBox i Libvirt. Podeu fer aparèixer Fedora Atomic Host en un Vagrant " -"Box amb la baixada de les imatges des de Fedora o bé utilitzar les eines per" -" a agafar les imatges des de HashiCorp's Vagrant Cloud." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Mostra les baixades de Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Baixades d'imatges de Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Aquestes imatges són imatges de Vagrant Boxes per al desenvolupament amb Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Image de VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Si esteu utilitzant Vagrant en Mac OS X o Windows, aquesta és probablement " -"la imatge que voldreu utilitzar." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Baixar" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Imatge Base Vagrant de VirtualBox de 64 bits de %s MB" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Imatge de libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Si esteu utilitzant Vagrant en Fedora, aquesta és la imatge que voldreu " -"utilitzar." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Imatge Base Vagrant de libvirt/KVM de 64 bits de %s MB" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Mostra les baixades mitjançant les eines de Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Baixades de Vagrant mitjançant les eines de Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Podeu utilitzar la següent ordre per a agafar les imatges Vagrant Box des de" -" HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Si heu executat prèviament Fedora %(rel)s Atomic Host a Vagrant en la vostra" -" màquina, aleshores podeu obtenir la versió més recent amb l'execució:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Per a més informació sobre l'execució de Vagrant en Fedora Workstation, " -"consulteu la nostra pàgina wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Imatges d'Atomic Host per als entorns en núvol" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Imatge qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Aquesta és la Fedora Cloud Atomic Host %(rel)s en una imatge formatada en " -"Qcow2 per al seu ús amb OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Imatge Qcow2 de 64 bits de %s MB" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Imatge RAW" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Aquesta és la Fedora Cloud Atomic Host %(rel)s en una imatge en format raw " -"comprimida. Si no esteu segur del que heu d'utilitzar, proveu-ho." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Imatge RAW comprimida amb XZ de 64 bits de %s MB" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Altres baixades" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Imatge ISO d'Atomic Host (%s MB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Imatge de contenidor (%s MB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Proveu un llançament previ" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Estem treballant en el nostre següent llançament." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Ajudeu-nos a tenir a punt F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Baixar imatges de F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Com provar els llançaments previs" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Recursos" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Projecte " -"Atomic: Com començar" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" -"Documentació quant a com començar a utilitzar el Projecte Atomic / Atomic " -"Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Projecte" -" Atomic: Llista de correu" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Uniu-vos a la llista de correu de desenvolupament principal atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Projecte Atomic: Xat d'IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Uniu-vos al canal del Projecte Atomic, #atomic a " -"l'irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verificar" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifiqueu la vostra imatge" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Baixar Fedora Atomic Host %(rel)s %(state)s" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Aquestes són les últimes imatges de Fedora Atomic Host, van ser produïdes el" -" %(pre_cloud_atomic_age)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"És programari previ al seu llançament i compta amb el suport del grup de treball Atomic. Adreceu les vostres " -"preguntes a la seva llista de correu o en " -"%(team_irc)s del freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Tots els problemes o errors han de ser informats a través del Bugzilla de Red Hat. El Projecte Fedora no ofereix cap " -"garantia quant a la seva idoneïtat o utilitat." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Els AMI en HVM de Fedora GP2 Atomic Host %(rel)s %(state)s" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Els AMI en HVM de Fedora Standard Atomic Host %(rel)s %(state)s" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxes per a Fedora Atomic Host estan disponibles per als proveïdors " -"VirtualBox i Libvirt. Podeu fer aparèixer Fedora Atomic Host en un Vagrant " -"Box amb la baixada de les imatges des de Fedora o bé utilitzar les eines per" -" a agafar les imatges des de HashiCorp's Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Aquesta és la Fedora Cloud Atomic Host %(rel)s %(state)s en una imatge en " -"format Qcow2 per utilitzar amb OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Aquesta és la Fedora Cloud Atomic Host %(rel)s %(state)s en una imatge en " -"format raw comprimida. Si no esteu segur del que heu d'utilitzar, proveu-ho." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projecte Fedora - No es va trobar la pàgina" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: No es va trobar la pàgina" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Disculpeu, però el fitxer o la pàgina que heu demanat no s'ha pogut " -"localitzar." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Idees de resolució de problemes" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Comproveu de nou l'URL si l'heu introduït manualment. L'heu copiat " -"correctament?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Un enllaç incorrecte? Poseu-vos en contacte amb l'administrador de la pàgina i expliqueu-li quin enllaç us ha " -"dut fins aquí." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"La pàgina o el fitxer poden haver estat moguts. Comproveu la pàgina principal o cerqueu en el nostre wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Claus de signatura de paquets" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Aquesta pàgina llista les claus GPG públiques per a la signatura de paquets " -"en Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Conegueu com Fedora us protegeix." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora fa ús de la signatura de paquets de GPG per assegurar-se que no s'ha " -"vist compromesa la integritat del paquet." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Llegiu les PMF per aprendre'n més »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Claus utilitzades actualment" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Principal" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secundari" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Esteu buscant claus obsoletes?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Claus obsoletes de signatura de paquets" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Aquesta pàgina llista les claus GPG públiques que no s'utilitzen més per a " -"la signatura de paquets en Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Claus obsoletes i sense utilitzar" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Clau GPG de Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Els paquets en el mitjà d'instal·lació estan signats amb aquesta clau. Els " -"dipòsits pertinents de dnf són fedora, fedora-" -"updates per a Fedora 7-9, core i core-" -"updates per a Fedora Core (Versió 6 in anteriors). Vegeu http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html per a informació de per què " -"aquesta clau està obsoleta." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 de proves" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora de proves" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Si participeu en la prova de paquets, aquesta és la clau que utilitzareu per" -" verificar els paquets de proves. Aquesta clau signa els paquets que estan " -"en el dipòsit fedora-testing. Vegeu http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html per obtenir informació sobre per" -" què aquesta clau és obsoleta." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Versions de prova de Fedora 8 i 9" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Versió de prova de Fedora 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Si utilitzeu Fedora Extras juntament amb Fedora Core 6, utilitzeu aquest " -"paquet del dipòsit extras. Aquesta clau no se seguirà " -"utilitzant un cop Fedora Core 6 i Extras arribin al final del cicle de vida " -"(7 de desembre del 2007). Aquesta clau no està inclosa en el paquet fedora-release a partir de Fedora 7." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Llegat" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Aquesta clau s'utilitzava en els paquets alliberats pel projecte Fedora " -"Legacy destinat a actualitzar versions de les quals se n'havia discontinuat " -"les actualitzacions oficials. El projecte Fedora Legacy ja no existeix, per " -"tant aquesta clau no serà utilitzada més per signar paquets. Aquesta clau ja" -" no s'inclou en el paquet fedora-release a partir de Fedora" -" 7." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "PMF de la signatura de paquets" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Apreneu com Fedora fa ús de GPG per signar paquets per assegurar la vostra " -"seguretat." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Com utilitza el Projecte Fedora les claus GPG per signar els paquets?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Cada paquet RPM estable publicat pel Projecte Fedora se signa amb una " -"signatura GPG. Per defecte el dnf i les eines gràfiques d'actualització " -"comprovaran aquestes signatures i rebutjaran qualsevol paquet que no ha " -"estat signat o té una signatura invàlida. Hauríeu de comprovar sempre la " -"signatura d'un paquet abans d'instal·lar-lo. Les signatures us asseguren que" -" els paquets que instal·leu han estat produïts pel Projecte Fedora i que no " -"han estat alterats (accidentalment o maliciosament) per cap rèplica o lloc " -"web que els estigui proveint." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Els paquets que baixeu del sistema de construcció Koji no vénen signats, per" -" tant, s'ha d'anar amb compte a l'hora d'instal·lar aquests paquets. De la " -"mateixa manera, els paquets més nous de Rawhide no tenen per què venir " -"signats." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importació de claus" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Les claus són incloses en el paquet fedora-release, es " -"poden trobar en el directori /etc/pki/rpm-gpg. Cal saber, " -"però, que no totes les claus incloses en aquest directori són utilitzades " -"pel projecte Fedora -- algunes d'elles s'utilitzen per als paquets de Red " -"Hat Enterprise Linux o ni tan sols s'utilitzen. Si utilitzeu paquets de Red " -"Hat Enterprise Linux, llegiu https://www.redhat.com/security/team/key. Les claus que " -"utilitza Fedora estan habilitades en la configuració dels dipòsits de dnf, " -"per tant en la majoria dels casos no us caldrà importar-les manualment en la" -" base de dades dels rpms." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"A més del paquet fedora-release i aquesta pàgina web, podeu baixar les claus" -" de Fedora des d'un servidor de claus públic com ara keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Per alguns dipòsits, com poden ser els dels paquets estables i de prova en " -"la configuració per defecte, el dnf pot trobar la clau " -"adequada pel dipòsit i demanar confirmació a l'usuari abans d'importar-la, " -"sempre que aquesta no s'hagi importat ja en la base de dades rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Sempre podeu importar una clau a la base de dades dels RPM a mà utilitzant " -"l'ordre següent:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Adreceu-vos al manual rpm per a més informació." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Si voleu verificar que les claus instal·lades en el vostre sistema concorden" -" amb les claus llistades aquí, podeu utilitzar GnuPG per comprovar que la " -"seva empremta electrònica concorda. Per exemple:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Obtenir Fedora Server: l'última tecnologia per a les vostres aplicacions i " -"serveis" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Executeu les vostres aplicacions en un SO servidor Linux amb la tecnologia " -"de codi obert més recent." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Ara, amb el contingut en diverses versions amb cicles de vida independents, " -"el vostre servidor es pot moure tant ràpidament com lentament." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server és un sistema operatiu servidor, amb cicles de vida breus i " -"amb suport de la comunitat, que permet als administradors de sistemes " -"experimentats amb qualsevol SO, fer ús de les últimes tecnologies " -"disponibles a la comunitat de codi obert." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Us presentem Modularity" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularity porta un nou dipòsit Modular, aquest dipòsit proporciona versions" -" addicionals de programari en cicles de vida independents." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Trieu la versió correcta d'una aplicació o una pila d'idiomes que necessiteu" -" i conserveu-ho, fins i tot quan el vostre sistema operatiu s'actualitzi a " -"una versió més recent." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Apreneu més detalls quant a Modularity" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Administració senzilla" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Administreu el vostre sistema de forma senzilla amb la interfície potent i " -"moderna de Cockpit. Vegeu i monitoreu l'estat i el rendiment del sistema, i " -"desplegueu i administreu els serveis basats en contenidors." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Serveis de bases de dades" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server incorpora un servidor de bases de dades de nivell empresarial " -"i escalable, impulsat pel projecte de codi obert PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Solució completa de domini empresarial" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Pugeu el nivell de la vostra xarxa Linux amb una gestió d'identitats " -"avançada, DNS, serveis de certificats, integració de dominis de Windows (TM)" -" a tot el vostre entorn amb FreeIPA, el controlador de domini de codi obert." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"“Per al DevConf US, necessitava un sistema per gestionar la conferència. " -"Vaig descobrir regcfp, per Patrick Uiterwijk, el qual semblava adaptar-se a " -"les meves necessitats. No obstant això, no s'executaria a nodejs 8 en F27. " -"Llançant F28 Server, i triant el flux \"nodejs:6\", va funcionar com un " -"rellotge!”" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "Vicepresident del consell d'administració de DevConf US" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Esteu preparat per donar una oportunitat a Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Baixar Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Baixar Fedora Server %(rel)s" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Imatge d'instal·lació de 64 bits de %s GB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"La imatge d'instal·lació de Fedora Server us permet fer el mitjà per al " -"vostre ordinador que arrenqui directament l'instal·lador per instal·lar " -"Fedora Server al vostre disc dur" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Per utilitzar aquesta imatge, necessiteu una unitat que pugui crear o cremar" -" discs DVD o bé un llapis USB com a mínim tan gran com la imatge." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Si voleu provar les característiques modulars noves de Fedora Server, " -"visiteu la secció Using Modules de la " -"documentació de Modularity. Si voleu més informació sobre Modularity en " -"general, consulteu el lloc web a pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Imatge d'instal·lació per xarxa:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Imatge de 64 bits de %s MB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Baixar imatges de F%(rel)s Alpha" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Baixar imatges de F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Obtenir més Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Tecnologia ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Com converteixo una imatge autònoma en un mitjà d'arrencada?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Després que us hàgiu baixat la imatge, haureu de fer un mitjà que es pugui " -"arrencar amb ella. Ja sigui cremant la imatge en un DVD " -"verge, o escrivint la imatge en un llapis USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Com puc arrancar des del mitjà?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Consulteu la documentació del vostre ordinador per al procediment per " -"arrencar des d'un altre medi diferent del disc dur incorporat. El procés pot" -" variar segons el fabricant i el model de l'ordinador. Podeu trobar útils aquests consells comuns." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Baixar Fedora Server %s" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Baixar Fedora Server %(rel)s %(state)s" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Imatge d'instal·lació de 64 bits de %s GB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"És programari previ al seu llançament i compta amb el suport del grup de treball Server. Adreceu les vostres " -"preguntes a la seva llista de correu o en " -"%(team_irc)s del freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Llegiu-vos les notes del llançament per a " -"més informació sobre els canvis i noves funcionalitats, o la pàgina Errors de programari comuns per informació " -"sobre els errors que es produeixen habitualment i com evitar-los." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Quan s'alliberarà Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Llegiu-vos totes les fites clau del calendari de llançaments..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Un cop us hàgiu baixat una imatge, verifiqueu-la per motius de seguretat i " -"d'integritat. Per a verificar la vostra imatge, comenceu amb la baixada del " -"següent fitxer CHECKSUM al mateix directori on us heu baixat la vostra " -"imatge i seguiu aquestes instruccions." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Obtenir Fedora Workstation: el millor SO d'escriptori per als " -"desenvolupadors de programari" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Aquesta és l'estació de treball Linux que heu estat esperant." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation és un sistema operatiu fiable, fàcil d'utilitzar i potent" -" per al vostre ordinador portàtil o de sobretaula. És compatible amb una " -"gran varietat de desenvolupadors, des dels aficionats i estudiants fins als " -"professionals en entorns corporatius." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“La gran quantitat d'eines proporcionades amb
Fedora em permet fer la " -"feina.
Simplement funciona.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Enginyera de rendiment en màquines virtuals Java" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Interfície d'usuari elegant" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Centreu-vos amb el vostre codi en l'entorn d'escriptori GNOME 3. GNOME es " -"construeix amb la retroalimentació de desenvolupadors i minimitza les " -"distraccions, perquè pugueu concentrar-vos en el que és important." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Caixes d'eines completes de codi obert" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Ometeu l'arrossegament en intentar de trobar o construir les eines que " -"necessiteu. Amb el joc complet de llenguatges, eines i utilitats de codi " -"obert, en Fedora, tot està a un clic o en una línia d'ordres. Fins i tot hi " -"ha projectes d'allotjament i dipòsits com COPR per fer que el vostre codi i " -"les vostres construccions estiguin ràpidament a disposició de la comunitat." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes i altres eines virt" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Fiqueu ràpidament en funcionament màquines virtuals per provar el codi en " -"múltiples plataformes mitjançant GNOME Boxes. O bé recaveu en les poderoses " -"eines de virtualització amb guions per a un major control." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Suport Docker integrat" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Feu contenidors de les vostres pròpies aplicacions o desplegueu les " -"aplicacions en contenidors per ser utilitzats un cop trets fora de la caixa " -"en Fedora, mitjançant l'última tecnologia com ara Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Esteu preparat per donar una oportunitat a Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Baixar Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Baixar Fedora Workstation %(rel)s" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Fedora Media Writer de %s MB per a Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "ISO de 64 bits de %s GB per a Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Fedora Media Writer de %s MB per a Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Baixeu Fedora Media Writer per al vostre sistema operatiu." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Necessiteu instruccions o una versió diferent?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Execució de Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Per a l'execució de Fedora Workstation necessitareu:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (baixada a sota)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Una unitat USB amb com a mínim %s GB d'espai lliure" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"De forma opcional, podeu instal·lar Fedora Workstation en un ordinador " -"portàtil o d'escriptori que tingui almenys un processador d'1 GHz, 1 GB de " -"RAM i 10 GB d'espai disponible. Per a fer-ho, executeu la versió autònoma de" -" Fedora Workstation des de la unitat flash USB de l'ordinador on vulgueu fer" -" la instal·lació, executeu l'aplicació Fedora Media Writer, i seguiu les " -"indicacions que es mostren en pantalla per completar la instal·lació." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plataformes admeses" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer admet les següents plataformes:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Hem detectat automàticament que esteu executant Mac OS X i " -"us hem ofert aquesta versió per a baixar. Si hem detectat el vostre sistema " -"operatiu de forma incorrecta o voleu baixar una versió diferent, si us plau," -" feu clic al botó «Mostra les baixades de totes les plataformes» de sota." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Hem detectat automàticament que esteu executant Linux i us " -"hem ofert aquesta versió per a baixar. Si hem detectat el vostre sistema " -"operatiu de forma incorrecta o voleu baixar una versió diferent, si us plau," -" feu clic al botó «Mostra les baixades de totes les plataformes» de sota." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Hem detectat automàticament que esteu executant Windows i" -" us hem ofert aquesta versió per a baixar. Si hem detectat el vostre sistema" -" operatiu de forma incorrecta o voleu baixar una versió diferent, si us " -"plau, feu clic al botó «Mostra les baixades de totes les plataformes» de " -"sota." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Mostra les baixades de totes les plataformes" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Disponible a través de DNF per a Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Més detalls" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Com s'utilitza aquesta ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verificació d'aquesta imatge" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Imatge autònoma de 64 bits de %s GB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Imatge autònoma de 32 bits de %s GB" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Imatges d'instal·lació per xarxa:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Imatge de 32 bits de %s MB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Provar Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic proporciona una imatge immutable del SO i actualitzacions a través " -"d'OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "Imatge d'Atomic de 64 bits de %s GB" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Conegueu més detalls" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Anunci del llançament" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Llegiu tot l'anunci del llançament a Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Notes del llançament" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Obteniu més informació sobre canvis des de l'última versió de Fedora, així " -"com els requisits mínims i les recomanacions per al funcionament de Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Guia d'instal·lació" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Us recomanem que li doneu un cop d'ull abans d'instal·lar-ho al vostre " -"sistema, ja que respon a diverses qüestions comunes." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" -"Errors de programari " -"comuns" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Un recurs excel·lent per consultar en cas que us trobeu amb qualsevol " -"incidència amb la instal·lació o l'execució de Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Què significa «autònoma»?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer crearà una estació de treball Fedora completa i " -"operativa que es podrà executar sense cap unitat USB. Podeu utilitzar la " -"imatge autònoma per a provar i jugar amb Fedora sense fer cap canvi al " -"vostre disc dur." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Quan estigueu preparat, podeu instal·lar Fedora al vostre disc dur sense " -"aquesta versió «autònoma» de Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Baixar Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Baixar Fedora Workstation %(rel)s %(state)s" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" -"Actualitzeu la versió a través de DNF si ja esteu en " -"Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"És programari previ al seu llançament i compta amb el suport del grup de treball Workstation. Adreceu les vostres " -"preguntes a la seva llista de correu o en " -"%(team_irc)s del freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Execució de versions prèvies al llançament de Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Per a l'execució d'una versió prèvia al llançament de Fedora Workstation " -"necessitareu:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (baixada disponible a sota)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Una imatge ISO autònoma de la versió prèvia al llançament de " -"Fedora que vulgueu executar" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ADVERTÈNCIA: Aquest procediment destrueix totes les dades del vostre mitjà " -"USB. Assegureu-vos que salvaguardeu qualsevol fitxer que sigui important del" -" vostre mitjà USB abans de fer-ho." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Baixeu l'aplicació Fedora Media Writer de sota." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Baixeu la imatge ISO que us interessi." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Obriu l'aplicació Fedora Media Writer. Haureu de proporcionar una " -"contrasenya per donar a l'aplicació els permisos necessaris." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Seleccioneu el «SO personalitzat...» de la llista." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" -"En la pàgina del SO personalitzat, seleccioneu el botó «Selecciona l'ISO " -"autònoma»." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"En la finestra de selecció del fitxer, localitzeu i seleccioneu la imatge " -"ISO que heu baixat." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Inseriu el vostre llapis USB al vostre ordinador. Si heu utilitzat " -"anteriorment el vostre llapis USB per a crear un mitjà autònom, haureu de " -"restaurar-ho als ajusts de fàbrica. Aquesta aplicació us demanarà fer-ho si " -"fos el cas." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Seleccioneu «Crea un USB autònom» per escriure la imatge. Espereu fins que " -"acabi el procés abans d'extraure el mitjà i tancar l'aplicació." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Verificar 64 bits!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Verificar 32 bits!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Com provar els llançaments previs" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"La guia wiki de Fedora quant a com provar una versió prèvia al llançament de" -" Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arquitectura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Posa en funcionament una instància AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Seleccioneu la regió més propera" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 bits (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 bits (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Posa'l en funcionament!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Normativa per a l'exportació" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Llegiu totes les normatives d'exportació" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"En fer clic i baixar Fedora, us comprometeu a complir els següents termes i " -"condicions." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Conegueu més detalls >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Sobre" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Sobre Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patrocinadors" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Apunts legals" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Obtenir Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Obtenir Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Obtenir Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Baixades alternatives" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Suport" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obtenir ajuda" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Preguntar a Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Errors de programari comuns" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portal de Fedora Developer" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guia d'instal·lació" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Unir-se" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Unir-se a Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Grups d'interès especial de Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistema de comptes de Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunitat de Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora disposa del patrocini de Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Conegueu més detalls quant a la relació entre Red Hat i Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. i altres." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Si us plau, envieu qualsevol comentari o correcció a l'equip dels llocs web." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Canvieu l'idioma" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "D'acord" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Hi ha molt més a \"Logotip" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Lleuger. Potent. Està totalment preparat per a Everycloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"L'última tecnologia. Una base estable. Junts, per a les vostres aplicacions " -"i per als vostres serveis." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentació i altres recursos" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Abans d'instal·lar Fedora, potser voldreu confirmar que el vostre sistema " -"compleixi els requisits mínims de Fedora. Consulteu les notes del llançament en línia per veure " -"els requisits mínims i les recomanacions." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"També hi ha disponible una guia completa " -"d'instal·lació. Us recomanem que li doneu un cop d'ull abans d'instal" -"·lar-la al vostre sistema, ja que respon a diverses qüestions comunes." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Altres vies d'obtenció del mitjà" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Podeu comprar el mitjà d'instal·lació per Fedora des dels encarregats de vendes en línia, o bé des de l'encarregat de vendes local en la vostra àrea." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Si no us podeu permetre pagar el preu d'un disc d'instal·lació, demaneu els " -"discs d'instal·lació al programa de discs gratuïts de " -"Fedora." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informació de la clau GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID de la clau" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Empremta digital" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Obteniu-la de:" diff --git a/getfedora.org/po/cs.po b/getfedora.org/po/cs.po deleted file mode 100644 index 3994aa1..0000000 --- a/getfedora.org/po/cs.po +++ /dev/null @@ -1,2852 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Josef Hruska , 2014 -# Josef Hruška , 2015. #zanata -# Zdenek , 2015. #zanata -# Josef Hruška , 2016. #zanata -# Marek Suchánek , 2016. #zanata -# Zdenek , 2016. #zanata -# Adam Přibyl , 2017. #zanata -# Josef Hruška , 2017. #zanata -# Marek Suchánek , 2017. #zanata -# Zdenek , 2017. #zanata -# Josef Hruška , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-07 03:43-0400\n" -"Last-Translator: Josef Hruška \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" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Kodex chování Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Kodex chování Fedory" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Chovejte se jako člen komunity podle kodexu chování." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Kodex chování" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Komunita Fedory je tvořena směsí profesionálů a dobrovolníků z celého světa," -" pracujících na všech aspektech od distribuce přes kódování, po marketing. " -"Diversita je jednou z hlavních předností, ale může vést k problémům v " -"komunikaci a k nedorozuměním. Z tohoto důvodu máme několik základních " -"pravidel o jejichž dodržování žádáme v momentě, kdy využíváte zdrojů " -"projektu." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Toto není vyčerpávající seznam věcí, které nemůžete dělat. Spíše to berte v " -"duchu, pro nějž je to určeno - průvodce, aby bylo jednodušší být vynikající " -"k sobě navzájem." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Buďte ohleduplní. Práci kterou děláte budou používat jiní lidé a naopak vaše" -" práce závisí na práci jiných. Jakékoli rozhodnutí, které uděláte ovlivní " -"kolegy a tak byste měli vzít v potaz následky svého rozhodnutí." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Buďte zdvořilí. Ne vždy budou všichni souhlasit, ale jiný názor není omluva " -"pro nevhodné chování a vystupování. Všichni si čas od času můžeme prožívat " -"určitý pocit zmaru, ale nemůžeme dovolit, aby tento pocit vyústil v osobní " -"útok. Je důležité pamatovat na to, že komunita kde se lidé cítí nepohodlně " -"či zastrašovaní není zrovna produktivní. Členové komunity Fedory by měli být" -" při kontaktu s ostatními přispěvateli, stejně jako s lidmi vně komunity, a " -"uživateli Fedory zdvořilí." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Když se neshodneme, snažíme se pochopit proč. Neshody, sociální i technické," -" se stávají pořád a Fedora není výjimkou. Je důležité, že řešíme neshody a " -"rozdílné názory konstruktivně." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Pamatujte, že všichni jsme rozdílní. Síla Fedory pochází z různorodosti její" -" komunity a z velkého rozsahu jejího pozadí. Různí lidé mají různé pohledy " -"na problém. Neschopnost pochopit rozdílné stanovisko jiného neznamená že " -"jeho je špatné. Nezapomínejte, že osočovat se navzájem z chyby komunitu " -"nikam neposune, raději nabídněte pomoc a poučte se z chyb." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Získejte Fedoru: stáhněte si náš OS založený na Linuxu s pracovním " -"prostředím pro vývojáře, nebo pro běh kontejnerů a více" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Zvolte si svobodu. Zvolte si Fedoru." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Méně nastavování, více inovace. Vyberte si podobu Fedory,

která " -"je připravena pro vaše potřeby, a hned se dejte do práce." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s uvolněna! Otestujte ji v sekci " -"Stáhnout." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s uvolněna! Získejte ji hned." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Stáhnout" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation je vytříbený, snadno použitelný operační systém pro " -"laptopy a stolní počítače s ucelenou sadou nástrojů pro vývojáře a tvůrce " -"všeho druhu." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Stáhnout" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server je výkonný, pružný operační systém, který obsahuje to nejlepší" -" a nejnovější z technologií pro datová centra. Dostane všechnu " -"infrastrukturu a služby pod vaši kontrolu." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic poskytuje nejlepší platformu pro stoh aplikací na bázi " -"technologií Linux-Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedoru lze vždy zcela svobodně kýmkoliv používat, upravovat a šířit. Fedora " -"je vytvářena a používána lidmi z celého světa, kteří spolupracují jako " -"komunita: Projekt Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Je libo větší výběr Fedory?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Komunita Fedory rovněž vydává obrazy pro ARM, alternativní " -"spustitelné spiny a jiné varianty Fedory přizpůsobené zvláštním požadavkům. " -"Prohlédnout si je můžete na stránce Spiny Fedory nebo Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Buďte ve spojení a informovaní." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Chcete se zapojit? Zjistit " -"co se děje v komunitě? Přečtěte si " -"nejnovější zprávy a kde se zadařilo v Časopisu Fedora." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Čtěte dokumentaci." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Podrobnější informace o současném vydání naleznete v Poznámkách k vydání. " -"Chcete-li se dozvědět více o používání Fedory a podrobnosti, jako např. " -"systémové požadavky, prostudujte si oficiální " -"dokumentaci." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Vyhledejte si pomoc." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Potřebujete pomoci s Fedorou? Obraťte se na Zeptejte se " -"Fedory, kde si lze pročíst archivy dotazů od ostatních uživatelů či " -"položit svůj vlastní dotaz." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponzoři Fedory" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Projekt Fedora je hrdý, že má následující organizace za sponzory..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Hlavní sponzoři" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. je hlavním sponzorem Projektu Fedora. Red " -"Hat poskytuje projektu Fedora širokou škálu zdrojů, včetně podpory " -"zaměstnanců na plný úvazek, hardwaru infrastruktury a připojení, financování" -" akcí a právního poradenství." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Projekt Fedora rovněž děkuje následujícím sponzorů za poskytnutí významné " -"podpory:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Máte zájem o sponsoring něčeho pro Fedoru?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Kontakt admin@fedoraproject.org nebo se " -"zastavte ve #fedora-admin na " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Ověřte si stažený obraz" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM a ověřovací pokyny" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Jak si ověřím svůj obraz?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Po stažení obrazu si ho ověřte z důvodu bezpečnosti a neporušenosti. Abyste " -"stažený obraz ověřili, nejprve stáhněte příslušný soubor kontrolního součtu " -"CHECKSUM do stejného adresáře, kam jste stáhli obraz." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Pro 64bitové obrazy" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Pro 32bitové obrazy" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Pro Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Pro ISO Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Pro obrazy Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Pro Container" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Dále importujte GPG klíč(e) Fedory:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "Detaily GPG klíče(-ů) lze ověřit zde." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Nyní ověřte, že soubor CHECKSUM je platný:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Soubor CHECKSUM by měl mít podpis založený na jednom z následujících klíčů:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Sekundární architektury Fedory 26 (AArch64, PPC64, PPC64le, s390 a s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"A nakonec po kontrole souboru CHECKSUM ověřte, že kontrolní součet obrazu s " -"ním souhlasí:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Prohlásí-li výstup, že je soubor platný, pak je soubor připraven k použití!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Jak si ověřím stažený obraz na jiném operačním systému?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Chcete-li si ověřit obraz, přečtěte si tyto pokyny." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Získejte Fedoru Atomic: nejlepší platforma pro stoh kontejnerových aplikací" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Nasaďte a provozujte aplikace v kontejnerech s neměnnou infrastrukturou." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Stáhnout nebo spustit ve veřejném cloudu " - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"\"Fedoru Atomic jsme si vybrali jako základ pro náš Navops Launch — řešení " -"založené na Kubernetes pro zprovoznění klastrů, protože naší zákazníci věří " -"a již provozují operační systémy Red Hat. Milujeme neměnné aspekty Fedory " -"Atomic, čímž je dokonalá pro kontejnerizovaná prostředí." - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "hlavní architekt, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host z Projektu Atomic je odlehčená, neměnná platforma, navržená " -"zcela pro účely provozu aplikací nasazených v kontejnerech." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedořina verze Atomic Hostu používá shodné repozitáře balíčků jako Fedora " -"Server a poskytuje nejaktuálnější verze Atomicu." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Aktualizace OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Aktualizujte svůj systém atomicky z nejaktuálnějšího OStree dodavatelského " -"projektu. Vytvořte si identické servery a jednoduše přejděte zpět na " -"předchozí stav, nastane-li problém s přechodem na vyšší verzi." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Spravujte kontejnery Docker, systémové kontejnery, Atomické aplikace, atd. " -"pomocí jednoho pohodlného nástroje příkazové řádky." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimalizováno pro Kubernetes a OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Sestavujete klastr Kubernetes nebo Origin, abyste provozovali aplikace " -"umístěné v kontejnerech? Provozujte ho na Fedoře Atomic, která poskytuje " -"potřebnou platformu na menším, zeštíhleném OS." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Připraveni zkusit Fedoru Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Stáhnout Fedoru Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Děkujeme za stažení Fedory!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Stahování by mělo začít během několika málo sekund. Pokud ne, klepněte na " -"odkaz níže:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Ověřte si stažený soubor!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Až si obraz stáhnete, ověřte ho z důvodu bezpečnosti a neporušenosti. Abyste" -" stažený obraz ověřili, nejprve stáhněte příslušný soubor kontrolního součtu" -" CHECKSUM do stejného adresáře, kam jste stáhli obraz, a řiďte se těmito pokyny." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Ověřit!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Stáhnout Fedoru Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Stáhnout Fedoru %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host se sestavuje přibližně každé 2 týdny" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Nejnovější dvoutýdenní sestavení nesplňuje naše testovací kritéria. Dostupné" -" obrazy jsou z období před %(atomic_age)s dny. Zkontrolujte si blog Projektu" -" Atomic ohledně aktualizací a informací o blokačních chybách projektu." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Zde se nacházejí nejnovější oficiální obrazy Fedory Atomic Host, vytvořené " -"před %(atomic_age)s dny." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Obrazy Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host představuje špičkový základní operační systém, který " -"vychází z modelu Projektu Atomic. Je založen na Kubernetes a kontejnerech " -"Docker. Zde zveřejněné obrazy jsou ukázkou těchto děl. Vezměte v potaz, že " -"obrazy prošly několika úrovněmi automatických testů." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Testujte, prosíme, nové verze před jejích použitím v produkčním " -"prostředí. Odhalíte-li problém, nástroje Atomic Host vám pomohou " -"snadno přejít na starší vydání — a pokud se tak stane, rovněž prosíme, " -"abyste nám pomohli nahlášením chyb nebo zasláním oprav." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Obrazy Fedory Atomic Host jsou aktualizovány přibližně jednou za " -"čtrnáct dnů, nikoliv v půlroční frekvenci vydávání Fedory. " -"Podporuje se pouze nejnovější hlavní vydání Fedory, neboť vývoj postupuje " -"rychlými kroky." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Vezměte v úvahu, že různé nosiče Fedory Atomic Host podléhají různým" -" úrovním automatického testování. Více o projektu Atomic lze " -"zjistit na stránkách projectatomic.io. Chcete-li zjistit " -"současný stav otestování, klepněte zde." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Obrazy Atomic Host pro veřejný cloud Amazon EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Níže uvedené odkazy vám poskytnou seznam dostupných AMI hardwarových " -"virtuálních strojů (HVM) Atomic Host dle regionu s tlačítky pro jejich " -"spuštění ve svém účtu Webových služeb Amazonu (AWS). Rovněž jsou poskytnuty " -"AMI ID, které lze užít s AWS Konzolí nebo nástroji příkazové řádky." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Formát GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"AMI ve formátu GP2 používají rychlejší úložiště SSD; použijte tato AMI pro " -"rychlost, avšak uvědomte si, že náklady na úložný prostor budou vyšší než " -"obvyklé." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Zavřít" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Spustit" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standardní formát" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"AMI standardního formátu jsou vhodnější, pokud přistupujete k datům " -"nepravidelně a chcete uchovat náklady na úložný prostor nízké." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standardní HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s standardní Atomic Host HVM AMI" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standardní formát" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Obrazy Atomic Host pro Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Vagrant Boxy pro Fedoru Atomic Host jsou k dispozici pro poskytovatele " -"VirtualBox a Libvirt. Fedoru Atomic Host lze zprovoznit ve vagrantím boxu " -"stažením obrazu z Fedory nebo pomocí vagrantích nástrojů stáhnout obrazy z " -"Vagrant Cloudu společnosti HashiCorp." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Zobrazit odkazy ke stažení pro Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Odkazy ke stažení obrazů pro Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Tyto obrazy jsou obrazy Vagrant Boxů pro zprovoznění prostřednictvím Vagrantu." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Obraz pro VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Používáte-li Vagrant na Mac OS X nebo Windows, toto je pravděpodobně obraz, " -"který chcete použít." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Stáhnout" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64bitový základní obraz Vagrant pro VirtualBox %s MB" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Obraz pro libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Používáte-li Vagrant na Fedoře, toto je obraz, který chcete použít." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64bitový základní obraz Vagrant pro libvirt/KVM %s MB" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Zobrazit odkazy ke stažení pomocí nástrojů Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Odkazy ke stažení pro Vagrant pomocí nástrojů Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Pomocí následujícího příkazu stáhnete obrazy Vagrant Boxu z Atlasu HashiCorp." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Provozovali-li jste již Fedoru %(rel)s Atomic Host ve Vagrantu na svém " -"systému, pak lze získat nejnovější verzi spuštěním příkazu:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Více informací o provozování Vagrantu na Fedoře Workstation viz naše wiki stránka." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Obrazy Atomic Host pro cloudová prostředí" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Obraz qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Zde se nachází obraz Fedory %(rel)s Cloud Atomic Host naformátovaný v Qcow2 " -"pro užití v OpenStacku." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64bitový obraz Qcow2 %s MB" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Surový obraz" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Zde se nachází obraz Fedory %(rel)s Cloud Atomic Host ve formátu " -"komprimovaného surového obrazu. Nejste-li si jisti, který obraz použít, " -"zkuste tento." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64bitový xz-komprimovaný surový obraz %s MB" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Další formy ke stažení" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host obraz ISO (%s MB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Obraz pro kontejner (%s MB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Vyzkoušejte připravovanou verzi" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Pracujeme na novém vydání." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Pomozte nám připravit F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Stáhnout obrazy F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Jak testovat připravované verze" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Zdroje" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Getting Started" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Dokumentace jak začít používat Projekt Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Projekt" -" Atomic: poštovní konference" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Přidejte se do poštovní konference dodavatelského projektu atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Projekt Atomic: IRC Chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Připojte se do chatu Projektu Atomic na kanálu #atomic " -"na irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Ověřit" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Ověřte stažený obraz" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Stáhnout Fedoru %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Toto jsou nejnovější obrazy Fedory Atomic Host, vytvořené dne " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Toto je připravovaný software podporovaný Pracovní" -" skupinou Atomic. Směrujte prosíme své dotazy do jejich poštovní konference nebo diskuzního kanálu " -"%(team_irc)s na freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Všechny problémy nebo chyby by měly být nahlášeny prostřednictvím systému Red Hat Bugzilla. Projekt Fedora neposkytuje žádné záruky " -"co do vhodnosti svého použití nebo užitečnosti." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMI" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s standardní Atomic Host HVM AMI" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxy pro Fedoru Atomic Host jsou k dispozici pro poskytovatele " -"VirtualBox a Libvirt. Fedoru Atomic Host lze spustit ve vagrant boxu tak, že" -" stáhnete obrazy od Fedory nebo pomocí nástrojů vagrant získáte obrazy z Atlasu HashiCorp." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Zde se nachází obraz Fedory %(rel)s %(state)s Cloud Atomic Host " -"naformátovaný v Qcow2 pro užití v OpenStacku." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Zde se nachází obraz Fedory %(rel)s %(state)s Cloud Atomic Host ve formátu " -"komprimovaného surového obrazu. Nejste-li si jisti, který obraz použít, " -"zkuste tento." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projekt Fedora - Stránka nenalezena" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Stránka nenalezena" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Omlouváme se, ale požadovaný soubor nebo stránku nelze nalézt." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Návrhy na řešení problému" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Překontrolujte adresu URL v případě, že jste ji zadali ručně. Opsali jste " -"URL správně?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Špatný odkaz? Kontaktujte správce stránek a vysvětlete " -"mu, který odkaz vás sem zavedl." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Stránka nebo soubor byl přesunut. Podívejte se na naši hlavní stránku nebo hledejte na naší wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Podpisové klíče balíčků" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Tato stránka uvádí seznam veřejných klíčů GPG používaných pro podepisování " -"balíčků nacházejících se ve Fedoře." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Zjistěte, jak vás Fedora chrání." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora využívá podepisování balíčků s GPG, aby zajistila, že neporušenost, " -"neboli integrita, balíčků nebyla narušena." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Více informací zjistíte přečtením často kladených dotazů »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Klíče používané v současnosti" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primární" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekundární" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Hledáte zastaralé klíče?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Zastaralé podpisové klíče balíčků" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Tato stránka uvádí seznam veřejných klíčů GPG, které se již více k " -"podepisování balíčků ve Fedoře nepoužívají." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Zastaralé a nepoužívané klíče" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Klíč GPG Fedory" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Tímto klíčem jsou podepsány balíčky na instalačních nosičích. Příslušné " -"repozitáře dnf jsou fedora, fedora-updates" -" pro Fedoru 7 - 9 a core a core-updates " -"pro Fedoru Core (verze 6 a dřívější). Informace proč je tento klíč zastaralý" -" viz http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Pokud se podílíte na testování balíčků, toto je klíč, který budete používat " -"pro ověření testovacích balíčků. Tento klíč podepisuje balíčky, které jsou v" -" repozitáři fedora-testing. Informace proč je tento klíč " -"zastaralý viz http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Používáte-li Fedora Extras s Fedora Core 6, použijte tento balíček z " -"repozitáře extras. Tento klíč nebude již dále používán " -"poté, kdy skončí doba podpory Fedory Core 6 a Extras (7. prosince 2007), " -"Tento klíč není součástí balíčku fedora-release ve Fedoře 7" -" a pozdějších vydáních." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Tento klíč byl používán pro balíčky, které byly vydány projektem Fedora " -"Legacy k aktualizaci vydání, jejichž oficiální doba podpora již skončila. " -"Projekt Fedora Legacy již nadále neexistuje, proto tento klíč již nadále " -"nebude používán k podpisu balíčků. Tento klíč není součástí balíčku fedora-release ve Fedoře 7 a pozdějších vydáních." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Často kladené dotazy o podepisování balíčků" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Zjistěte, jak k zajištění vaší bezpečnosti využívá Fedora pro podepisování " -"balíčků GPG." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Jak Projekt Fedora využívá klíče GPG k podpisu balíčků?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Každý stabilní balíček RPM, který je zveřejněn Projektem Fedora, je podepsán" -" podpisem GPG. Dnf a grafické aktualizační nástroje standardně ověřují tyto " -"podpisy a odmítnou nainstalovat každý balíček, který není podepsán nebo má " -"neplatný podpis. Měli byste vždy ověřit podpis balíčku, před tím než ho " -"nainstalujete. Tyto podpisy jsou zárukou, že balíčky, které nainstalujete, " -"jsou tím, co bylo vytvořeno Projektem Fedora a nebylo změněno (ať již omylem" -" či záměrně) žádným zrcadlem nebo webovými stránkami, které balíček " -"poskytují." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Balíčky, které lze stáhnout ze sestavovacího systému Koji neobsahují " -"podpisy, proto byste je měli používat obezřetně. Obdobně nemusí být nezbytně" -" podepsány nejnovější balíčky v Rawhide." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Import klíčů" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Klíče jsou obsaženy v balíčku fedora-release, lze je nalézt" -" v adresáři /etc/pki/rpm-gpg. Prosíme berte v úvahu, že ne " -"všechny klíče v tomto adresáři jsou používány Projektem Fedora -- některé " -"jsou používány pro podepisování balíčků Red Hat Enterprise Linuxu nebo již " -"nejsou používány vůbec. Používáte-li balíčky Red Hat Enterprise Linuxu viz " -"https://www.redhat.com/security/team/key. Klíče používané" -" Fedorou jsou povoleny v nastavení repozitáře dnf, proto obecně není nutné " -"je importovat ručně do databáze rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Kromě balíčku fedora-release a této webové stránky lze stáhnout klíče Fedory" -" z veřejných serverů kryptografických klíčů, jako např. keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Pro některé repozitáře, jako např. repozitáře stabilních a testovacích " -"balíčků ve výchozím nastavení, dokáže dnf nalézt " -"odpovídající klíč a dotázat se uživatele na potvrzení před importem klíče, " -"není-li klíč v databázi rpm již naimportován." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Vždy lze importovat klíč do databáze RPM ručně použitím tohoto příkazu:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Pro více informací si přečtěte rpm manuál." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Pokud chcete ověřit, že klíče nainstalované na vašem systému se shodují s " -"klíči uvedenými zde, můžete použít GnuPG pro kontrolu otisků klíčů. Na " -"příklad:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Získejte Fedoru Server: nejnovější technologie pro vaše aplikace a služby" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Provozujte aplikace na linuxovém serverovém OS s nejaktuálnější open-source " -"technologií." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Nyní s obsahem v několika verzích s nezávislým životním cyklem — je proto " -"možné, aby váš server mezi nimi přecházel rychle, ale i pomalu." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server je operační systém pro servery, který je založen na krátkém " -"životním cyklu a podporován komunitou. Umožňuje zkušeným systémovým " -"správcům, kteří mají zkušenosti s kterýmkoliv OS, používat nejaktuálnější " -"technologie dostupné v open-source komunitě." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Úvod do Modularity" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularita přináší nový repozitář Modular, který poskytuje další verze " -"softwaru s nezávislým životním cyklem." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Zvolte si tu pravou verzi aplikace nebo jazykového stohu (stack) a zůstaňte " -"s ní, i pokud OS povýší na verzi aktuálnější." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Zjistěte si více o Modularitě" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Jednoduchá správa" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Spravujte svůj systém jednoduše s výkonným, moderním rozhraním Cockpit. " -"Zobrazujte a monitorujte výkon a stav systému a nasazujte a spravujte služby" -" založené na kontejnerech." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Databázové služby" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server sebou přináší škálovatelný databázový server podnikové třídy " -"poháněný open-source projektem PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Kompletní podnikové řešení domén" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Zdokonalte svou linuxovou síť pokročilou správou identit, DNS, " -"certifikačními službami, doménovou integrací s Windows(TM) pomocí svého " -"prostředí s FreeIPA, open-source doménovým řadičem." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"\"Potřeboval jsem systém pro správu konference DevConf US. Objevil jsem " -"regcfp od Patricka Uiterwijka, který se zdál být to pravé pro mé potřeby. " -"Avšak nebylo ho možné provozovat na F27 v nodejs 8. Spustil jsem F28 Server," -" vybral proud \"nodejs:6\" a vše fungovalo jak mávnutím proutku!\"" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "Spolupředseda konference DevConf US" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Připraveni zkusit Fedoru Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Stáhnout Fedoru Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Stáhnout Fedoru %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64bitový instalační obraz %s GB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Instalační obraz Fedory Server vám umožní vytvořit pro váš počítač nosič, " -"který nastartuje do instalačního programu, jenž rovnou nainstaluje Fedoru " -"Server na pevný disk." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Chcete-li tento obraz použít, potřebujete mechaniku, která vytváří, neboli " -"\"vypaluje\", disky DVD, nebo disk USB flash alespoň o velikosti obrazu." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Pokud byste rádi vyzkoušeli nové modulární vlastnosti Fedory Server, " -"prosíme, navštivte sekci Using Modules modulární" -" dokumentace. Více informací o Modularitě obecně viz stránky na pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Obraz pro instalaci ze sítě:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64bitový obraz %s MB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Stáhněte si obrazy F%(rel)s Alfa" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Stáhněte si obrazy F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Ještě více Fedory" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® Technologie" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Jak mám změnit spustitelný (live) obraz na bootovatelný nosič?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Po stažení obrazu z něj vytvořte bootovatelný nosič. A to buď vypálením obrazu na prázdný disk DVD, nebo zapsáním obrazu na disk USB flash." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Jak z nosiče nabootuji?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Nejprve si prověřte systémovou dokumentaci svého počítače, kde by měl být " -"postup pro bootování z jiného nosiče, než je vestavěný pevný disk, uveden. " -"Proces se může lišit v závislosti na výrobci a modelu vašeho počítače. Za " -"užitečné lze považovat tyto obecné rady." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Stáhnout Fedoru %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Stáhnout Fedoru %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64bitový instalační obraz %s GB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Toto je předprodukční program podporovaný pracovní " -"skupinou Server. Směřujte prosím své dotazy jejich diskusní skupině nebo %(team_irc)s na freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Více informací o změnách a nových vlastnostech si lze přečíst v Poznámkách k vydání, na stránce Známé chyby pak informace o vícekrát " -"zaznamenaných chybách a jak je odstranit." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Kdy bude vydána Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Přečtěte si všechny klíčové milníky plánu vydání..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Až si obraz stáhnete, ověřte ho z důvodu bezpečnosti a neporušenosti. Abyste" -" stažený obraz ověřili, nejprve stáhněte níže uvedený soubor kontrolního " -"součtu CHECKSUM do stejného adresáře, kam jste stáhli obraz, a řiďte se těmito pokyny." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Získejte Fedoru Workstation: nejlepší OS s prostředím pracovní plochy pro " -"softwarové vývojáře" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Linuxová pracovní stanice, na kterou jste čekali." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation je spolehlivý, uživatelsky přívětivý a výkonný operační " -"systém pro laptop a stolní počítač. Poskytne podporu široké škále vývojářů " -"od nadšenců a studentů po profesionály v podnikových prostředích." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"\"Nespočet nástrojů poskytovaných
Fedorou mi pomohl dokončit
své" -" pracovní úkoly. Jednoduše funguje.\"" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "inženýrka výkonu JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Uhlazené uživatelské rozhraní" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Zaměřte se na svůj kód v pracovním prostředí GNOME 3. GNOME je vyvíjeno se " -"zpětnou vazbou od vývojářů a minimalizuje rušivé efekty, soustřeďte se tak " -"pouze na důležité věci." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Úplná sada open-source nástrojů" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Vyhněte se zátěži, kterou představuje snaha nalézt nebo vyvinout potřebné " -"nástroje. S kompletní sadou open-source programovacích jazyků, nástrojů a " -"pomocných programů Fedory je vše v dosahu klepnutí myší nebo příkazové " -"řádky. Existuje dokonce i hosting projektů a repozitáře, jako např. COPR, " -"které vám pomohou rychle zpřístupnit váš kód a sestavení komunitě." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxy a další virtualizační nástroje" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Rychle sestavte a spusťte virtuální stroje, abyste otestovali svůj kód na " -"několika platformách, použitím GNOME Boxů. Nebo se ponořte do výkonných, " -"skripty upravitelných virtualizačních nástrojů, které vám pomohou získat " -"ještě vyšší kontrolu." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Vestavěná podpora Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Umístěte své vlastní aplikace do kontejnerů, nebo nasaďte na Fedoře ihned " -"kontejnerizované aplikace použitím nejnovější technologie, jako je Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Připraveni zkusit Fedoru Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Stáhněte si Fedoru Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Stáhnout Fedoru %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer pro Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO pro Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Stažení souboru je nutné pouze pro nové instalace. Chcete-li přejít na vyšší" -" verzi, postupujte dle těchto pokynů." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer pro Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Stáhněte si Fedora Media Writer pro váš operační systém." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Potřebujete instrukce? Nebo jinou verzi?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Provozování Fedory Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Chcete-li provozovat Fedoru Workstation, budete potřebovat:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (odkaz ke stažení výše)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "USB flash disk s nejméně %s GB volného místa" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation je k dispozici pomocí programu Fedora Media Writer. " -"Stáhněte si tento program pro svou podporovanou platformu" -" a dle pokynů v něm si vytvořte spustitelnou (viz vpravo 'Co znamená " -"\"živá\"?') verzi Fedory Workstation na USB flash disku. Poté lze spustit " -"spustitelnou verzi Fedory Workstation z tohoto USB disku." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Případně můžete nainstalovat Fedoru Workstation na laptop nebo stolní " -"počítač, který má k dispozici alespoň 1 GHz procesor, 1 GB RAM a 10 GB " -"prostoru. Chcete-li to provést, spusťte živou verzi Fedory Workstation z USB" -" flash disku na počítači, na němž chcete instalaci provést, spusťte aplikaci" -" Fedora Media Writer a pro dokončení instalace postupujte podle pokynů na " -"obrazovce." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Podporované platformy" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer podporuje následující platformy:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Automaticky jsme zjistili, že máte spuštěn Mac OS X, a " -"nabídli vám tuto verzi ke stažení. Pokud jsme automaticky zjistili váš " -"operační systém chybně, nebo byste si raději stáhli jinou verzi, prosíme " -"klepněte na níže uvedené tlačítko \"Zobrazit odkazy ke stažení pro všechny " -"platformy\"." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Automaticky jsme zjistili, že máte spuštěn Linux, a nabídli" -" vám tuto verzi ke stažení. Pokud jsme automaticky zjistili váš operační " -"systém chybně, nebo byste si raději stáhli jinou verzi, prosíme klepněte na " -"níže uvedené tlačítko \"Zobrazit odkazy ke stažení pro všechny platformy\"." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Automaticky jsme zjistili, že máte spuštěn Windows, a " -"nabídli vám tuto verzi ke stažení. Pokud jsme automaticky zjistili váš " -"operační systém chybně, nebo byste si raději stáhli jinou verzi, prosíme " -"klepněte na níže uvedené tlačítko \"Zobrazit odkazy ke stažení pro všechny " -"platformy\"." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Zobrazit odkazy ke stažení pro všechny platformy" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Pro Fedoru dostupné pomocí DNF" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Více podrobností" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Jak použít toto ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Ověřit stažený obraz" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64bitový živý obraz %sGB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32bitový živý obraz %s GB" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Obrazy pro instalaci ze sítě:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32bitový obraz %s MB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Zkuste Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic poskytuje neměnný (immutable) obraz OS a aktualizace prostřednictvím " -"OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64bitový obraz Atomic %s GB" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Zjistěte si více" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Oznámení o vydání" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Přečtěte si úplné oznámení o vydání v magazínu Fedory." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Poznámky k vydání" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Zjistěte si změny od poslední verze Fedory i minimální požadavky a " -"doporučení pro její používání." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Instalační příručka" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Doporučujeme, abyste se s příručkou před instalací na svůj počítač " -"seznámili, neboť obsahuje odpovědi na mnoho obvyklých dotazů." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Známé chyby" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Vynikající zdroj ke konzultaci v případě, že narazíte na jakékoli problémy s" -" instalací nebo se spuštěním Fedory." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Co znamená \"živá\" (\"live\")?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer vytvoří kompletní, běžící systém Fedora Workstation, " -"který lze spustit přímo z USB disku. Spustitelný obraz lze použít pro " -"testování a hraní si s Fedorou, aniž by došlo k provedení změn na pevném " -"disku." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Jakmile jste připraveni, můžete nainstalovat Fedoru na svůj pevný disk přímo" -" z \"živé\" verze Fedory Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Spiny Fedory" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Stáhněte si Fedoru Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Stáhnout Fedoru %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" -"Pokud již Fedoru používáte, přejděte na vyšší verzi pomocí " -"DNF." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Toto je připravovaný software podporovaný pracovní " -"skupinou Workstation. Směrujte prosím své dotazy jejich diskusní skupině nebo %(team_irc)s na freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Provozování připravované verze Fedory Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Chcete-li spustit připravovanou verzi Fedory Workstation, budete potřebovat:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Odkaz ke stažení níže)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Spustitelný obraz ISO připravované verze Fedory, kterou " -"si přejete spustit" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"VAROVÁNÍ: Tento postup zničí všechna data na nosiči USB. Ujistěte se, že " -"jste si z nosiče USB zazálohovali všechny důležité soubory ještě předtím, " -"než postup provedete." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Stáhněte si aplikaci Fedora Media Writer níže." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Stáhněte si požadovaný obraz disku ISO." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Otevřete aplikaci Fedora Media Writer. Budete zřejmě muset zadat heslo, aby " -"aplikace měla potřebná oprávnění." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Vyberte ze seznamu \"Libovolný obraz\"." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Na stránce Libovolný obraz vyberte tlačítko \"Vybrat obraz disku ISO\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"V okně pro výběr souboru vyhledejte a vyberte obraz ISO, který jste stáhli." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Vložte USB flash disk do počítače. Pokud jste klíčenku již dříve použili pro" -" vytvoření živého média, může být nutné ji nastavit do továrního nastavení. " -"Aplikace se vás v takovém případě zeptá, zda-li to má udělat." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Vyberte \"Vytvořit živý USB disk\" pro zapsání obrazu. Před vyjmutím média " -"počkejte na dokončení procesu a zavřete aplikaci." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Ověřit 64bitový!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Ověřit 32bitový!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Jak testovat připravované verze" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Wiki příručka Fedory o tom, jak pomoci s testováním připravovaných verzí " -"Fedory." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architektura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Spustit instanci AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Vyberte nejbližší region" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Spustit!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Omezení vývozu" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Přečtěte si kompletní omezení vývozu" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Klepnutím na odkaz a stažením Fedory vyjadřujete souhlas s následujícími " -"ustanoveními a podmínkami." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Číst dále >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "O spinu" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "O Fedoře" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponzoři" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Časopis Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Právní informace" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Získejte Fedoru Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Získejte Fedoru Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Získejte Fedoru Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Stažení alternativních verzí" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Podpora" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Získejte pomoc" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Zeptejte se Fedory" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Známé chyby" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portál Fedory pro vývojáře" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Průvodce instalací" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Přidejte se" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Přidejte se k Fedoře" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Systém účtů Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Komunita Fedory" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora je sponzorována společností Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Zjistěte si více o vztahu mezi společností Red Hat a Fedorou »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. a další." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Prosíme, zašlete jakékoliv připomínky nebo korektury chyb týmu webových stránek." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Změnit jazyk" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Více z \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Zeštíhlená. Výkonná. Připravena pro kterýkoliv cloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Nejnovější technologie. Stabilní základna. Společně, pro vaše aplikace a " -"služby." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentace a další zdroje" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Před instalací Fedory byste se měli ujistit, že váš systém splňuje její " -"minimální požadavky. Minimální požadavky a další doporučení si pročtěte v on-line poznámkách k vydání." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"K dispozici je rovněž úplná Instalační " -"příručka. Doporučujeme, abyste se s ní před instalací na svůj systém " -"seznámili, neboť obsahuje odpovědi na mnoho obvyklých dotazů." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Další způsoby získání nosičů" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Instalační nosiče Fedory si lze objednat za úplatu u on-line " -"prodejců nebo místního prodejce ve vaší oblasti." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Nemůžete si dovolit cenu instalačního nosiče? Požádejte si o instalační " -"nosič Fedory z Programu nosiče Fedory zdarma." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informace o klíči GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID klíče" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Otisk" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Získat z:" diff --git a/getfedora.org/po/cy.po b/getfedora.org/po/cy.po deleted file mode 100644 index 50f69a9..0000000 --- a/getfedora.org/po/cy.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Welsh\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" -"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/da.po b/getfedora.org/po/da.po deleted file mode 100644 index 08f9488..0000000 --- a/getfedora.org/po/da.po +++ /dev/null @@ -1,2534 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Kris Thomsen , 2014 -# Kris , 2015. #zanata -# scootergrisen , 2017. #zanata -# scootergrisen , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-12 03:13-0400\n" -"Last-Translator: scootergrisen \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" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Vælg frihed. Vælg Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Mindre opsætning, mere innovation. Vælg en variant af Fedora

som" -" er strømlinet til dine behov og begynd straks på at arbejde." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s er udgivet! Test den i Download-" -"sektionen." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s er udgivet! Hent den nu." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Download nu" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation er et poleret, letanvendeligt styresystem til bærbare og " -"stationære computere med et komplet sæt af værktøjer til alle slags " -"udviklere og skabere." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Download nu" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server er et kraftfuldt, fleksibelt styresystem, som inkluderer de " -"bedste og seneste datacenter-teknologier. Den giver dig styringen over al " -"din infrastruktur og tjenester." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic giver den bedste platform til din Linux-Docker-Kubernetes " -"(LDK) -programstak." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora er altid frit for alle at bruge, modificere og videredistribuere. Den" -" er bygget og brugt af folk fra hele kloden, der arbejder sammen som et " -"fællesskab: Fedora-projektet." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Ønsker du flere Fedora-valgmuligheder?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora-fællesskabet udgiver også ARM-aftryk, alternative live-spins og andre variationer af Fedora " -"skræddersyet til bestemte behov. Gennemse dem på webstederne Fedora Spins eller Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Vær i kontakt og informeret." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Vil du være med? Find ud af " -"hvad der sker i fællesskabet? Få de " -"seneste nyheder og cool ting hos Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Læs dokumentationen." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Tjek udgivelsesnoterne for detaljerede information om den nuværende " -"udgivelse. For at lære mere om at bruge Fedora og detaljer såsom systemkrav," -" se den officielle dokumentation." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Få hjælp." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Har du brug for hjælp med Fedora? Tjek Ask Fedora hvor du" -" kan læse arkiver af spørgsmål fra andre brugere eller selv stille dine egne" -" spørgsmål." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedoras sponsorer" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Fedora-projektet er stolt af at have følgende organisationer som " -"sponsorer..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Primær sponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Kontakt admin@fedoraproject.org eller kom forbi" -" #fedora-adminirc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verificer dit downloadet aftryk" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Hvordan verificerer jeg mit diskaftryk?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Importér herefter Fedoras GPG-nøgle(r):" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "Du kan verificere GPG-nøglernes detaljer her." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Nu skal du verificere om CHECKSUM-filen er gyldig:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM-filen burde have en god signatur fra én af de følgende nøgler:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Udsend og skalér dine containerized programmer med immutable infrastruktur." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Download eller start i offentlig sky" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Klar til at prøve Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Tak fordi du downloadede Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Din download skulle begynde om få sekunder. Hvis ikke, tryk på linket " -"nedenfor:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verificér din download!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Download Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2-format" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Luk" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI-ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Start" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standardformat)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standardformat" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox-aftryk" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Download" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2-aftryk" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Rå-aftryk" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Andre downloads" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Prøv en præ-udgivelse" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Vi arbejder på vores næste udgivelse." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Hjælpe os med at få F%(rel)s klar!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Test af præ-udgivelser" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ressourcer" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verificer" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verificer dit aftryk" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora-projekt - Side ikke fundet" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Side ikke fundet" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Vi beklager, men filen eller siden du forespurgte kunne ikke findes." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Fejlsøgningsforslag" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Kontrollér din URL to gange, hvis du indtastede den manuelt. Har du kopieret" -" den rigtigt?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primær" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekundær" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG-nøgle" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Hvordan bruger Fedora-projektet GPG-nøgler til at signere pakker?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importerer nøgler" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Du kan altid importere en nøgle til RPMs database i hånden, ved at bruge " -"følgende kommando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Læs rpm-manualen for mere information." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Hvis du vil verificere at nøglerne er installeret på dit system, kan du " -"sammenligne nøglerne som er opstillet her, du kan bruge GnuPG til at " -"kontrollere at fingeraftrykkene på nøgler er ens. For eksempel:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Nem administration" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Databasetjenester" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Komplet Enterprise Domain-løsning" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Klar til at prøve Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Download Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Download Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB installationsaftryk" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall-aftryk:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit %sMB aftryk" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Download F%(rel)s Alpha-aftryk" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Download F%(rel)s Beta-aftryk" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Hent flere Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Hvordan gør jeg live-aftrykket til et opstartsbart medie?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Hvordan starter jeg fra mediet?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Download Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit %sGB installationsaftryk" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Linux-arbejdstationen som du har ventet på." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation er et pålideligt, brugervenligt og kraftfuldt styresystem" -" til din bærbare eller stationære computer. Den understøtter en bred vifte " -"af udviklere, fra hobbybrugere og studerende til professionelle i " -"virksomhedsmiljøer." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM-performanceingeniør" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Elegant brugergrænseflade" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Fokusér på din kode i GNOME 3-skrivebordsmiljøet. GNOME er bygget med " -"feedback fra udviklere, og minimerer distraktioner, så du kan koncentrere " -"dig om det der er vigtigt." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Komplet open source-værktøjskasse" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes og andre virt-værktøjer" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Indbygget Docker-understøttelse" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Containerize dine egne apps eller udsend containerized apps \"out of the " -"box\" på Fedora ved brug af den seneste teknologi såsom Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Klar til at prøve Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Download Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Download Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora-medieskriver til Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO til Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora-medieskriver til Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Download Fedora-medieskriver til dit styresystem." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Har du brug for instruktioner? Eller en anden version?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Køre Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "For at køre Fedora Workstation, skal du bruge:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora-medieskriver (download ovenfor)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Et USB-flashdrev med mindst %s GB tilgængelig plads" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation leveres via Fedora-medieskriver. Download programmet til " -"din understøttede platform og følg spørgsmålene for at " -"generere en live-version (se 'Hvad betyder \"Live\"?' til højre) af Fedora " -"Workstation på et USB flash-drev. Du kan så køre live-versionen af Fedora " -"Workstation fra dit USB flash-drev." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Du kan også installere Fedora Workstation på en bærbar eller stationær " -"computer med minimum 1 GHz processor, 1 GB RAM og 10 GB ledig diskplads. Det" -" gøres ved at køre live-versionen af Fedora Workstation fra dit USB flash-" -"drev på computeren du vil installere på, og kør så Fedora-medieskriver-" -"programmet og følg spørgsmålene på skærmen for at fuldføre installationen." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Understøttede platforme" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora-medieskriver understøtter følgende platforme:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vi har automatisk registeret at du kører Mac OS X og " -"tilbyder den version til download. Hvis vi har registreret dit styresystem " -"forkert eller du vil downloade en anden version, så klik venligst på \"Vis " -"downloads til alle platforme\"-knappen nedenfor." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Vi har automatisk registeret at du kører Linux og tilbyder " -"den version til download. Hvis vi har registreret dit styresystem forkert " -"eller du vil downloade en anden version, så klik venligst på \"Vis downloads" -" til alle platforme\"-knappen nedenfor." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vi har automatisk registeret at du kører Windows og " -"tilbyder den version til download. Hvis vi har registreret dit styresystem " -"forkert eller du vil downloade en anden version, så klik venligst på \"Vis " -"downloads til alle platforme\"-knappen nedenfor." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Vis downloads til alle platforme" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Tilgængelig via DNF til Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Flere detaljer" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Hvordan bruges denne ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verificer aftrykket" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit %sGB live-aftryk" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bit %sGB live-aftryk" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall-aftryk:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit %sMB aftryk" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Prøv Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Lær mere" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" -"Udgivelsesbekendtgørelse" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Udgivelsesnoter" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Installationsguide" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Almindelige fejl" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Hvad betyder \"live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Download Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Download Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Download det ønskede ISO-aftryk." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Test af præ-udgivelser" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arkitektur" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Start AMI-instans" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Vælg den nærmeste region" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Start den!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Eksportregulativer" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Læs de fulde eksportregulativer" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Ved at klikke på og downloade Fedora, accepterer du at overholde følgende " -"vilkår og betingelser." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Læs mere >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Om" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Om Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorer" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Juridisk" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Hent Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Hent Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Hent Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternative downloads" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Support" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Få hjælp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Spørg Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Almindelige fejl" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora-udviklerportal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installationsguide" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Deltag" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Deltag i Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG'er" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora-kontosystem" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora-fællesskab" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora er sponsoreret af Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Lær mere om forholdet mellem Red Hat og Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. og andre." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Send venligst kommentarer eller rettelser til webstedsteamet." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Skift sprog" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Slank, kraftfuld. Everycloud klar." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Den nyeste teknologi. Et stabilt fundament. Samlet, til dine applikationer " -"og tjenester." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentation og andre ressourcer" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Andre måder at få fat i et medie" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Du kan købe installationsmedier til Fedora fra onlineforhandlere eller en lokal " -"forhandler i dit område." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Har du ikke råd til installationsmedier? Anmod om Fedora-installationsmedier" -" fra Fedora Free Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG-nøgleinformation" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Nøgle-ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingeraftryk" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Hent det fra:" diff --git a/getfedora.org/po/de.po b/getfedora.org/po/de.po deleted file mode 100644 index 720fc7d..0000000 --- a/getfedora.org/po/de.po +++ /dev/null @@ -1,2860 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Roman Spirgi , 2014 -# Robert Mayr , 2015. #zanata -# Roman Spirgi , 2015. #zanata -# Florian H. , 2016. #zanata -# Roman Spirgi , 2016. #zanata -# Tobias Weise , 2016. #zanata -# Florian H. , 2017. #zanata -# Robert Mayr , 2017. #zanata -# Roman Spirgi , 2017. #zanata -# Thomas Eichhorn , 2017. #zanata -# Tobias Weise , 2017. #zanata -# Thomas Eichhorn , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-02 11:37-0400\n" -"Last-Translator: Thomas Eichhorn \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" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Verhaltenskodex des Fedora Projekts" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Verhaltenskodex des Fedora Projekts" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Verhalten Sie sich als Communitymitglied, folgen Sie dem Verhaltenskodex." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Verhaltenskodex" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Die Fedora-Community besteht weltweit aus Berufstätigen sowie Freiwilligen " -"und arbeitet an jedem Teil-Aspekt der Distribution von der Programmierung " -"bis zum Marketing. Diversität ist eine unserer größten Stärken, aber dies " -"kann auch zu Kommunikationsschwierigkeiten und Unzufriedenheit führen. Aus " -"diesem Grund haben wir einige Grundregeln aufgestellt, die eingehalten " -"werden sollen, wenn Projektressourcen verwendet werden." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Dies ist keine allumfassende Auflistung von Dingen, die nicht getan werden " -"sollen. Interpretieren Sie die Liste in dem Sinne, wie sie erschaffen wurde " -"- eine Richtlinie, um es einfacher zu machen, exzellent miteinander " -"umzugehen." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Seien Sie rücksichtsvoll. Ihre Arbeit wird von anderen genutzt und Sie sind " -"von der Arbeit anderer abhängig. Jede Entscheidung, die Sie treffen, " -"beeinflusst Nutzer und Kollegen und Sie sollten diese Konsequenzen " -"berücksichtigen, wenn Sie Entscheidungen treffen." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Seien Sie respektvoll. Wir stimmen nicht immer miteinander überein, aber " -"Unstimmigkeiten sind keine Entschuldigung für aggressives Verhalten und " -"schlechte Manieren. Wir erleben alle hin und wieder etwas Frustration, aber " -"wir wollen keine persönlichen Angriffe zulassen. Es ist wichtig, sich daran " -"zu erinnern, dass eine Gemeinschaft, in der Leute sich unwohl oder bedroht " -"fühlen keine produktive Gemeinschaft ist. Mitglieder der Fedora-Gemeinschaft" -" sollten respektvoll mit anderen Beitragenden sowie mit Menschen außerhalb " -"der Fedora-Gemeinschaft sowie Nutzern von Fedora umgehen." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Wenn wir Meinungsverschiedenheiten haben, versuchen wir zu verstehen " -"weshalb. Meinungsverschiedenheiten, ob sozial oder technisch treten immer " -"wieder auf und Fedora ist hier keine Ausnahme. Es ist wichtig, dass wir " -"Unstimmigkeiten und unterschiedliche Ansichten konstruktiv lösen." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Denken Sie daran, dass wir alle unterschiedlich sind. Die Stärke von Fedora " -"ist die vielfältige Gemeinschaft von Menschen mit unterschiedlichen " -"Hintergründen. Verschiedene Leute haben verschiedene Sichtweisen auf Themen." -" Nicht zu verstehen, weshalb jemand eine bestimmte Sichtweise vertritt, " -"bedeutet nicht, dass diese Sichtweise falsch ist. Vergessen Sie nicht, dass " -"irren menschlich ist und uns gegenseitige Schuldzuweisungen nicht weiter " -"führen. Stattdessen können wir anbieten, Probleme lösen zu helfen und aus " -"Fehlern zu lernen." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Fedora herunterladen: Unser Linux-basiertes Betriebssystem für Entwickler-" -"Desktops, Container-Deployments und mehr" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Freiheit wählen. Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Weniger Konfiguration, mehr Innovation. Die auf Sie zugeschnittene Version " -"wählen

und sofort loslegen." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s veröffentlicht! Holen Sie es sich " -"im Download-Bereich." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s veröffentlicht! Jetzt herunterladen." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Jetzt herunterladen" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation ist ein ausgefeiltes, leicht zu bedienendes " -"Betriebssystem für Laptops und Desktops, komplett ausgestattet mit Software " -"für Entwickler und Macher." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Jetzt herunterladen" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server ist ein flexibles und leistungsstarkes Betriebssystem, das die" -" neuesten und besten Technologien für Datenzentren beinhaltet. Es gibt Ihnen" -" die Kontrolle über Ihre Dienste und Ihre gesamte Infrastruktur." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic stellt die beste Plattform für den Anwendungs-Stack von Linux-" -"Docker-Kubernetes (LDK) zur Verfügung." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora ist frei für alle, modifizierbar und lässt sich frei an andere " -"weitergeben. Es wird von Menschen auf der gesamten Welt unterstützt und " -"entwickelt. Sie alle sind das Fedora-Projekt." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Noch mehr Fedora-Optionen?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Die Fedora-Gemeinschaft stellt ebenfalls ARM-Abbilder zur Verfügung, " -"alternative Live-Spins und weitere Fedora-Varianten, die auf spezifische " -"Anforderungen zugeschnitten sind. Fedora Spins oder Fedora Labs besuchen." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "In Verbindung & informiert bleiben." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Möchtest du dich beteiligen?" -" Finde heraus, was gerade in der Community läuft. Lese " -"die aktuellsten Neuigkeiten und Berichte über coole Sachen im Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Die Dokus lesen." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Lesen Sie die Versionshinweise für weitere Informationen zur aktuellen " -"Version. Um mehr über Fedora zu erfahren und z.B. Systemanforderungen " -"einzusehen, konsultieren Sie die offizielle " -"Dokumentation." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Hilfe erhalten." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Benötigen Sie Unterstützung zu Fedora? Ask Fedora bietet " -"Antworten zu vielen Fragen, oder stellen Sie dort gleich selber Ihre eigene " -"Frage." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora-Sponsoren" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Das Fedora-Projekt ist stolz, von folgenden Organisationen gesponsert zu " -"werden..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Hauptsponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. ist der Hauptsponsor des Fedoraprojektes. " -"Red Hat unterstützt das Fedoraprojekt mit einer Vielzahl an Ressourcen, " -"einschließlich Vollzeitmitarbeitenden, Hardware-Infrastruktur und " -"Bandbreite, Eventunterstützung und rechtlicher Beratung." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Das Fedora-Projekt ist zudem den nachfolgenden Sponsoren für die großzügige " -"Unterstützung dankbar :" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Möchten Sie Fedora in irgendeiner Art sponsern?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"admin@fedoraproject.org kontaktieren oder bei " -"#fedora-admin auf irc.freenode.net " -"vorbeischauen." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Heruntergeladenes Abbild überprüfen" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Anleitungen zu CHECKSUM und Überprüfung" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Wie kann das Abbild verifiziert werden?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Wenn Sie ein Abbild heruntergeladen haben, überprüfen Sie es auf Sicherheit " -"und Integrität. Um Ihr ISO-Abbild zu überprüfen, laden Sie die dazugehörige " -"CHECKSUM-Datei ins gleiche Verzeichnis wie das ISO-Abbild." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Für 64-Bit Abbilder" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Für 32-Bit Abbilder" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Für Atomic Host ISO" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Für Atomic Host Abbilder" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Importieren Sie danach den GPG-Schlüssel von Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Sie können die Details der GPG Schlüssel hier " -"überprüfen." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Nun überprüfen Sie, ob die CHECKSUM-Datei gültig ist:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Die CHECKSUM-Datei sollte eine gültige Signatur von einem der folgenden " -"Schlüssel besitzen:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 25 sekundäre Architekturen (AArch64, PPC64, PPC64le, s390 und s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Nachdem die CHECKSUM-Datei nun überprüft wurde, können Sie nun verifizieren," -" ob die Prüfsumme des Abbildes übereinstimmt:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Wenn die Ausgabe besagt, dass die Datei gültig ist, können Sie gleich " -"loslegen!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Wie können ein heruntergeladenes Abbild auf einem anderen Betriebssystem " -"verifiziert werden?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Fedora Atomic herunterladen: die beste Plattform für den Anwendungs-Stack " -"Ihrer Container" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Bereitstellung und Skalierung Ihrer Container-Anwendungen auf persistenter " -"Infrastruktur." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Herunterladen oder in Public Cloud starten" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"»Wir haben uns entschlossen, Fedora Atomic als Basis für unsere Navops " -"Launch - Kubernetes Cluster Provisioning Lösung zu verwenden, weil unsere " -"Kunden bereits Red Hat Betriebssysteme einsetzen und darauf vertrauen. Wir " -"lieben den persistenten Aspekt von Fedora Atomic, der perfekt für " -"containerisierte Umgebungen ist.«" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Chief Architect, Navops von Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host from Project Atomic ist eine leichtgewichtige, persistente " -"Plattform, die ausschließlich für den Zweck konzipiert wurde, Container-" -"Anwendungen bereitzustellen." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedoras Atomic Host Version verwendet die selben Paketquellen wie Fedora " -"Server und stellt die aktuellsten Atomic-Versionen bereit." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree Aktualisierungen" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Ihr System automatisch aktualisieren mit upstream OStree. Server " -"vereinheitlichen und einfach zurücksetzen, falls Probleme nach " -"Aktualisierungen auftreten." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Mit einem praktischen Kommandozeilen-Werkzeug Docker Container, System " -"Container, Atomic-Apps und mehr verwalten." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimiert für Kubernetes und OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Erstellen eines Kubernetes oder Origin-Clusters, um Ihre Container-" -"Anwendungen auszuführen? Fedora Atomic stellt die benötigte Plattform auf " -"einem kleinen, schlanken Betriebssystem bereit." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Bereit, um Fedora Atomic auszuprobieren?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Danke, dass Sie Fedora herunterladen!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Ihr Download beginnt in wenigen Sekunden. Falls dies nicht der Fall sein " -"sollte, klicken Sie auf den nachfolgenden Link:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Heruntergeladene Dateien prüfen" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Soabld Sie ein Abbild heruntergeladen haben, überprüfen Sie es auf " -"Sicherheit und Integrität. Um Ihr ISO-Abbild zu überprüfen, laden Sie die " -"dazugehörige CHECKSUM-Datei ins gleiche Verzeichnis wie das ISO-Abbild und " -"folgen Sie dieser Anleitung." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Fedora Atomic herunterladen" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Fedora %(rel)s Atomic Host herunterladen" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host wird ungefähr alle zwei Wochen aktualisiert." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Die neuesten zweiwöchentlichen Builds erfüllen unsere Prüfkriterien nicht. " -"Die verfügbaren Abbilder sind über %(atomic_age)s Tage alt. Konsultieren Sie" -" den Projekt Atomic-Blog für Neuigkeiten und Informationen über Atomic " -"Blocker Bugs." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Dies sind die neuesten offiziellen Fedora Atomic Host-Abbilder, vor " -"%(atomic_age)s Tagen bereitgestellt." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host-Abbilder" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host ist ein führendes Basis-Betriebssystem, das dem Project " -"Atomic-Model folgt. Es wurde für Kubernetes und Docker-Container konzipiert." -" Die hier veröffentlichten Abbilder zeigen den aktuellen Stand dieser " -"Entwicklung. Diese Abbilder sind mehrere Stufen von automatischen Tests " -"durchlaufen." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Es wird empfohlen neue Version zu testen, bevor diese in Produktiv-" -"Umgebungen eingesetzt werden. Falls Probleme auftreten, kann mit " -"den Atomic-Host-Tools einfach zu einem früherer Version zurückgekehrt werden" -" — Helfen Sie mit und melden Sie dies, indem Sie Fehlerberichte erstellen " -"oder Fehlerbereinigungen senden." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Fedora Atomic Host-Abbilder werden in etwa alle zwei Wochen " -"aktualisiert, und basieren nicht auf dem sechsmonatigen Fedora-" -"Erscheinungszyklus. Da hier die Entwicklung schnell voranschreitet, wird nur" -" das letzte größere Fedora-Release unterstützt." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Beachten Sie, dass Fedora Atomic Host-Medien verschiedene Ebenen der" -" automatischen Prüfung durchlaufen. Mehr über das Atomic Project " -"erfahren unter projectatomic.io. Hier " -"klicken, um den aktuellen Teststatus einzusehen." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host Abbilder für Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Die nachfolgenden Links stellen Listen verfügbarer AMIs nach Region zur " -"Verfügung und lassen sich über Schaltflächen in Ihrem Amazon Web Services-" -"Konto starten. AMI IDs zur Verwendung mit der AWS-Konsole oder " -"Kommandozeilenwerkzeuge stehen ebenfalls zur Verfügung. " - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 Format" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"GP2 formatierte AMIs verwenden schnelleren SSD-Speicher. Diese AMIs für " -"Einsatzzwecke verwenden, wo Schnelligkeit benötigt wird, allerdings werden " -"die Speicherkosten höher ausfallen als bei Standard." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Schliessen" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host Cloud HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Start" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standard Format)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Standard formatierte AMIs sind besser geeignet, falls unregelmäßig auf Daten" -" zugegriffen wird und die Speicherkosten tiefer gehalten werden sollen." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMIs" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s Standard Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standard Format" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host-Abbild für Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Vagrant Abbilder anzeigen" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant Abbilder Downloads" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Diese Vagrant Boxes-Abbilder sind für Bereitstellungen über Vagrant bestimmt." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox-Abbild" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Falls Sie Vagrant unter Mac OS X oder Windows einsetzen, benutzen Sie am " -"besten dieses Abbild." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Herunterladen" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64 Bit %sMB VirtualBox Base Vagrant-Abbild" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM-Abbild" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Falls Sie Vagrant unter Fedora einsetzen, benutzen Sie dieses Abbild." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64 Bit %sMB libvirt/KVM Base Vagrant-Abbild" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Vagrant-Befehle für Downloads anzeigen" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Vagrant-Downloads mit Vagrant-Befehlen" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Den folgenden Befehl verwenden, um die Vagrant Box Abbilder von HashiCorp's Atlas zu laden." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Falls Fedora %(rel)s Atomic Host in Vagrant bereits auf Ihrem Rechner läuft," -" dann kann einfach auf die neueste Version aktualisiert werden:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Auf unserer Wiki-Seite mehr erfahren, wie Vagrant auf " -"Fedora Workstation ausgeführt wird." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host Abbilder für Cloud-Umgebungen" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2-Abbild" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Dies ist Fedora %(rel)s Cloud Atomic Host in einem Qcow2 formatierten Abbild" -" zur Benutzung mit OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Qcow2-Abbild" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw-Abbild" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Dies ist Fedora %(rel)s Cloud Atomic Host in einem komprimierten RAW-Abbild." -" Bei Unsicherheiten, diese Version verwenden." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB xz-komprimiertes Raw-Abbild" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Andere Downloads" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO Abbild (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Vor-Version testen" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Wir arbeiten an unserer nächsten Version." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Helfen Sie uns, F%(rel)s bereitzustellen!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "F%(rel)s %(state)s Abbilder herunterladen" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Vor-Versionen testen" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ressourcen" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Erste Schritte" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Dokumentation der ersten Schritte bei Project Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Mailing-Liste" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Der Upstream-Mailing-Liste beitreten bei atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC-Chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Dem Project Atomic-Kanal #atomic auf " -"irc.freenode.org beitreten." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifizieren" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Heruntergeladenes Abbild überprüfen" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Fedora %(rel)s %(state)s Atomic Host Abbilder herunterladen" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Dies sind die neuesten Fedora Atomic Host Abbilder, erstellt am " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dies ist eine Vorabversion, die von der Atomic-" -"Arbeitsgruppe bereitgestellt wird. Fragen dazu können Sie an die Mailingliste oder an %(team_irc)s via Freenode " -"senden." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Alle Probleme oder Fehler sollten über Red Hat Bugzilla " -"gemeldet werden. Das Fedora-Projekt übernimmt keine Garantie für die Eignung" -" oder Brauchbarkeit dieser Version." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant-Boxen für Fedora Atomic Host sind für VirtualBox und Libvirt " -"verfügbar. Sie können Fedora Atomic Host in einer Vagrant Box starten, indem" -" Sie die Fedora-Abbilder herunterladen oder die Vagrant-Befehle benutzen, um" -" die Abbilder von HashiCorp's Atlas zu ziehen." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Dies ist Fedora %(rel)s %(state)s Cloud Atomic Host in einem Qcow2 " -"formatierten Abbild zur Verwendung mit OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Dies ist Fedora %(rel)s %(state)s Cloud Atomic Host in einem komprimierten " -"RAW-Abbild. Bei Unsicherheiten, diese Version verwenden." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora-Projekt - Die Seite wurde nicht gefunden" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Seite nicht gefunden" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Wir bitten um Entschuldigung, aber die Datei oder die von Ihnen angeforderte" -" Seite konnte nicht gefunden werden." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ideen für die Fehlersuche" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Überprüfen Sie die URL nochmals, wenn Sie diese von Hand eingegeben haben. " -"Haben Sie die URL korrekt kopiert?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Sind Sie über einen nicht funktionierenden Link hierher gelangt? " -"Kontaktieren Sie den Webmaster und teilen Sie mit, " -"welcher Link Sie auf diese Seite geführt hat." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Die Datei oder Seite, die Sie suchen, wurde möglicherweise verschoben. " -"Besuchen Sie unsere Hauptseite oder durchsuchen Sie " -"unser Wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Schlüssel für die Paket-Signierung" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Diese Seite listet die öffentlichen GPG-Schlüssel auf, die für das Signieren" -" von Fedora-Paketen benutzt werden." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Wie Sie Fedora schützt, erfahren Sie hier." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora benutzt GPG-Paketsignaturen, um sicherzustellen, dass die Paket-" -"Integrität nicht komprimittiert wurde." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "FAQ lesen, um mehr zu erfahren »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Derzeit verwendete Schlüssel" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primäre Architekturen" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekundäre Architekturen" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Auf der Suche nach älteren Schlüsseln?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Veraltete Signatur-Schlüssel" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Diese Seite listet die öffentlichen GPG-Schlüssel auf, die für das Signieren" -" von Fedora-Paketen nicht mehr benutzt werden." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Veraltete und nicht mehr benutzte Schlüssel" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG-Schlüssel" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Die Pakete auf den Installationsmedien sind mit diesem Schlüssel signiert " -"worden. Die relevanten yum-Repositories sind fedora und " -"fedora-updates für Fedora 7 bis 9, sowie " -"core und core-updates für Fedora Core " -"(Version 6 und älter). Auf http://www.redhat.com/archives" -"/fedora-announce-list/2008-August/msg00012.html erfahren Sie, warum " -"dieser Schlüssel nicht mehr verwendet wird." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Wenn Sie am Testen von Paketen teilnehmen, müssen Sie diesen Schlüssel " -"verwenden, um die Pakete zu überprüfen. Mit diesem Schlüssel sind die Pakete" -" im Repository fedora-testing signiert. Auf http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html erfahren Sie, warum dieser " -"Schlüssel nicht mehr verwendet wird." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 Testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Wenn Sie Fedora Extras zusammen mit Fedora Core 6 verwenden, benutzen Sie " -"das Paket aus dem Repository extras. Dieser Schlüssel wird " -"seit dem Ende der Produktlebenszeit von Fedora Core 6 und Extras (dem 7. " -"Dezember 2007) nicht mehr verwendet. Zudem ist dieser Schlüssel seit Fedora " -"7 auch nicht mehr im Paket fedora-release enthalten." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Dieser Schlüssel wurde für Pakete verwendet, die von Fedora Legacy " -"veröffentlicht worden sind, um Aktualisierungen bereitzustellen, nachdem die" -" stabile Version das offizielle Ende der Produktlebenszeit erreicht hatte. " -"Da Fedora Legacy nicht mehr existiert, wird dieser Schlüssel auch nicht mehr" -" verwendet, um Pakete zu signieren. Der Schlüssel ist seit Fedora 7 zudem " -"nicht mehr im Paket fedora-release enthalten." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ zur Paketsignierung" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Erfahren Sie, wie Fedora GPG benutzt, um Pakete zu signieren und damit Ihre " -"Sicherheit zu gewährleisten." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"Wie setzt das Fedora-Projekt GPG Schlüssel ein, um Pakete zu signieren?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Jedes stabile RPM-Paket, das vom Fedora-Projekt veröffentlicht wird, ist mit" -" einem GPG-Schlüssel signiert worden. Standardmäßig überprüfen yum und die " -"grafischen Update-Werkzeuge diese Signaturen und verweigern die Installation" -" von nicht signierten Paketen bzw. von Paketen mit einer ungültigen " -"Signatur. Sie sollten immer die Signatur eines Pakets vor jeder Installation" -" überprüfen. Diese Signaturen stellen sicher, dass die Pakete, die Sie " -"installieren, vom Fedora-Projekt erstellt und durch keinen Spiegel-Server " -"bzw. Webseite (welche die Pakete bereithalten) unbeabsichtigt oder " -"bösartigerweise verändert worden sind." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Pakete, die über das Koji-Buildsystem heruntergeladen werden können, " -"enthalten keine Signaturen und sollten daher mit Vorsicht verwendet werden. " -"Ähnlich verhält es sich mit Paketen in Rawhide, diese sind nicht unbedingt " -"signiert." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Schlüssel importieren" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Die Schlüssel sind im Paket fedora-release enthalten, Sie " -"können diese daher im Verzeichnis /etc/pki/rpm-gpg finden. " -"Bitte beachten Sie, dass nicht alle Schlüssel in diesem Verzeichnis vom " -"Fedora-Projekt verwendet werden - einige werden für das Signieren von " -"Paketen für Red Hat Enterprise Linux genutzt oder haben inzwischen gar keine" -" Verwendung mehr. Wenn Sie Pakete für Red Hat Enterprise Linux verwenden, " -"sollten Sie sich auch https://www.redhat.com/security/team/key ansehen. Die " -"Schlüssel, die von Fedora verwendet werden, sind in der Repository-" -"Konfiguration von yum eingebunden, so dass Sie diese nicht mehr manuell in " -"die RPM-Datenbank importieren müssen." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"In Ergänzung zum Fedora-Release-Paket und dieser Webseite können Sie die " -"Fedora-Schlüssel von einem öffentlichen Schlüsselserver wie z.B. keys.gnupg.net herunterladen." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Bei einigen Repositories, wie zum Beispiel die Repositories mit stabilen und" -" zu testenden Paketen in der Standardkonfiguration, ist yum" -" in der Lage, den passenden Schlüssel für das Repository zu finden und sich " -"vom Benutzer eine Bestätigung geben zu lassen, bevor der Schlüssel " -"importiert wird - sofern dieser Schlüssel nicht bereits in der RPM-Datenbank" -" vorhanden ist." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Mit dem nachfolgenden Befehl können Sie jederzeit von Hand einen Schlüssel " -"in die RPM-Datenbank importieren:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Weitere Informationen finden Sie in der Dokumentation von " -"rpm." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Wenn Sie überprüfen möchten, ob die Schlüssel, die auf Ihrem System " -"installiert sind, mit den hier aufgelisteten Schlüsseln übereinstimmen, dann" -" können Sie GnuPG verwenden, um zu vergleichen, ob der Fingerabdruck der " -"Schlüssel übereinstimmt. Zum Beispiel:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Fedora Server herunterladen: Die neueste Technologie für Ihre Anwendungen " -"und Dienste" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Einfache Administration" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Systemverwaltung auf einfache Weise über die leistungsstarke, moderne " -"Cockpit-Oberfläche. Systemleistung und Status anzeigen und überwachen sowie " -"Container-basierte Dienste bereitstellen und verwalten." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Datenbank-Dienste" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Mit dem Open-Source PostgreSQL-Projekt beinhaltet Fedora Server einen " -"skalierbaren Datenbank-Server der Enterprise-Klasse." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Umfassende Enterprise Domain Lösung" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Bereit, um Fedora Server auszuprobieren?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Fedora Server herunterladen" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Fedora %(rel)s Server herunterladen" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-Bit %sGB Installationsabbild" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Mit dem Fedora Server Abbild kann ein Medium erstellt werden, von dem sich " -"Fedora Server direkt auf Ihre Festplatte installieren lässt." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Um dieses Abbild zu benutzen wird ein Laufwerk benötigt, das DVDs erstellen " -"kann. Alternativ kann ein USB-Stick verwendet werden, der mindestens so " -"gross ist wie das Abbild." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall-Abbild:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-Bit %sMB Abbild" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "F%(rel)s Alpha-Abbilder herunterladen" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "F%(rel)s Beta-Abbilder testen" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Noch mehr Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM®-Technologie" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Wie wird ein Live-Abbild boot-fähig?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Nach dem Herunterladen des Abbildes ein bootfähiges Medium erstellen. " -"Entweder das Abbild auf eine leere DVD schreiben, oder das Abbild auf einen USB-Stick schreiben." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Wie boote ich von diesem Medium?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Konsultieren Sie die System-Dokumentation Ihres Rechners, um von einem " -"anderem Medium als der internen Festplatte zu starten. Diese Prozedur kann " -"sich je nach Hersteller und Modell Ihres Rechners unterscheiden. Vielleicht " -"helfen Ihnen diese allgemeinen Hinweise weiter." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Fedora %(rel)s %(state)s Server herunterladen" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-Bit %sGB Installationsabbild" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dies ist eine Vorabversion, die von der Server-" -"Arbeitsgruppe bereitgestellt wird. Fragen dazu können Sie an die Mailingliste oder an %(team_irc)s via Freenode " -"senden." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Lesen Sie die Versionshinweise für weitere " -"Informationen zu Änderungen und neuen Funktionen und die Häufige Fehler-Seite für Informationen " -"betreffend häufig auftretenden Fehlern und wie man diese vermeidet." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Wann wird Fedora %s veröffentlicht?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" -"Erfahren Sie mehr über alle wichtigen Meilensteine des Release-Plans ..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Soabld Sie ein Abbild heruntergeladen haben, überprüfen Sie es auf " -"Sicherheit und Integrität. Um Ihr ISO-Abbild zu überprüfen, laden Sie die " -"dazugehörige CHECKSUM-Datei ins gleiche Verzeichnis wie das ISO-Abbild und " -"folgen Sie dieser Anleitung." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Fedora Workstation herunterladen: Das beste Desktop-Betriebssystem für " -"Software-Entwickler" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Die Linux-Workstation, auf die Sie gewartet haben." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation ist ein zuverlässiges, benutzerfreundliches und " -"leistungsfähiges Betriebssystem für Ihren Laptop oder Desktop. Es wird von " -"vielen Entwicklern eingesetzt, von Studenten über Laien bis hin zu " -"Spezialisten in Unternehmensumgebungen." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"»Die Fülle an Werkzeugen,
die in Fedora enthalten ist,
" -"ermöglicht es mir,
meine Arbeit zu erledigen.
Es funktioniert " -"einfach.«" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM Performance Engineer" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Ausgefeilte Benutzeroberfläche" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Mit der GNOME 3 Benutzeroberfläche können Sie sich auf Ihren Code " -"konzentrieren. GNOME wurde zusammen mit Entwicklern konzipiert und minimiert" -" Ablenkungen, damit Sie sich auf das Wesentliche konzentrieren können." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Vollständige Open Source Werkzeugkiste" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Vergessen Sie das Suchen oder Erstellen der benötigten Werkzeuge. Mit " -"Fedoras vollständiger Zusammenstellung von Open Source Sprachen, Tools und " -"Hilfsprogrammen ist alles einen Klick oder eine Befehlszeile weit entfernt. " -"Es gibt sogar Projekt-Hosting und Paketquellen wie COPR, um Ihren Code zu " -"erstellen und Builds schnell der Community zur Verfügung zu stellen." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes und andere Virt-Werkzeuge" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Mit GNOME Boxes können Sie Ihren Code auf verschiedenen Plattformen testen, " -"indem Sie im Handumdrehen virtuelle Maschinen aufsetzen und betreiben. Oder " -"lernen Sie mächtige, skriptfähige Virtualisierungstools für noch mehr " -"Kontrolle kennen." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Integrierte Docker-Unterstützung" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Erstellen Sie Container für Ihre eigenen Apps oder stellen Sie mit Fedora " -"auf einfache Weise Container-Apps bereit, indem Sie die neueste Technologien" -" wie Docker verwenden." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Bereit, um Fedora Workstation auszuprobieren?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Fedora Workstation herunterladen" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Fedora %(rel)s Workstation herunterladen" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer für Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO für Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer für Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Fedora Media Writer für Ihr Betriebsszstem herunterladen." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Anleitung gesucht? Oder eine weitere Variante?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Fedora Workstation ausführen" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Um Fedora Workstation ausführen, wird folgendes benötigt:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (Download oben)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Einen USB-Stick mit mindestens %s GB freien Speicherplatz" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Optional kann Fedora Workstation auf einem Laptop- oder Desktop-Rechner " -"installiert werden, der mindestens einen 1 GHz-Prozessor, 1 GB RAM und 10 GB" -" Speicherplatz aufweist. Dazu führen Sie die Live-Version von Fedora " -"Workstation auf dem gewünschten Rechner aus, starten die Fedora Media " -"Writer-Anwendung und folgen den Anweisungen auf dem Bildschirm, um die " -"Installation auszuführen." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Unterstützte Plattformen" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer unterstützt die folgenden Plattformen:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Wir haben erkannt, dass Sie Mac OS X verwenden und bieten " -"automatisch diese Version zum Download an. Wenn wir Ihr Betriebssystem " -"falsch erkannt haben oder Sie eine andere Version herunterladen möchten, " -"klicken Sie bitte unten auf die Schaltfläche »Alle Plattform-Downloads " -"anzeigen«." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Wir haben erkannt, dass Sie Linux verwenden und bieten " -"automatisch diese Version zum Download an. Wenn wir Ihr Betriebssystem " -"falsch erkannt haben oder Sie eine andere Version herunterladen möchten, " -"klicken Sie bitte unten auf die Schaltfläche »Alle Plattform-Downloads " -"anzeigen«." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Wir haben erkannt, dass Sie Windows verwenden und bieten " -"automatisch diese Version zum Download an. Wenn wir Ihr Betriebssystem " -"falsch erkannt haben oder Sie eine andere Version herunterladen möchten, " -"klicken Sie bitte unten auf die Schaltfläche »Alle Plattform-Downloads " -"anzeigen«." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Alle Plattform-Downloads anzeigen" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Via DNF verfügbar für Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Mehr Details" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Was mache ich mit diesem ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Dieses Abbild überprüfen" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit %sGB Live-Abbild" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-Bit %sGB Live Abbild" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall-Abbilder:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-Bit %sMB Abbild" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Versionsankündigung" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Die vollständige Versionsankündigung im Fedora-Magazin lesen" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Erfahren Sie mehr über Änderungen seit der letzten Fedora-Version sowie " -"Mindestanforderungen und Empfehlungen für den Betrieb von Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Wir empfehlen dies vor der Installation auf Ihr System durchzusehen, da " -"damit viele häufige Fragen beantwortet werden." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Häufige Fehler" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Eine hervorragende Ressource, falls Probleme mit der Installation oder beim " -"Ausführen von Fedora auftreten." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Was bedeutet »Live«?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer erstellt eine vollständige, lauffähige Fedora " -"Workstation, die auf einem USB-Stick ausgeführt werden kann. Sie können das " -"Live-Abbild testen, ohne dass Ihre Festplatte geändert wird." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Wenn Sie dazu bereit sind, können Sie Fedora Workstation dann von dieser " -"»Live«-Version auf Ihre Festplatte installieren." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Fedora Workstation %s herunterladen" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Fedora %(rel)s %(state)s Workstation herunterladen" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dies ist eine Vorabversion, die von der Workstation-Arbeitsgruppe bereitgestellt wird. Fragen dazu können Sie" -" an die Mailingliste oder an %(team_irc)s via " -"Freenode senden." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Vor-Versionen von Fedora Workstation betreiben" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Um eine Vorversion von Fedora Workstation zu betreiben, wird folgendes " -"benötigt:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Download nachfolgend erhältlich)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Ein Live ISO-Abbild der gewünschten Vorversion von Fedora" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"WARNUNG: Dieses Verfahren löscht sämtliche Daten auf Ihrem USB-Stick. " -"Vergewissern Sie sich daher, dass Sie wichtige Dateien an einen anderen Ort " -"gesichert haben." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Fedora Media Writer herunterladen" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Gewünschtes ISO-Abbild herunterladen" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Die Fedora Media Writer App öffnen. Eventuell muss ein Passwort eingegeben " -"werden, damit die App mit den entsprechenden Berechtigungen ausgeführt " -"werden kann." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "»Benutzerdefiniertes Betriebssystem« von der Liste auswählen." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" -"Auf der Seite für das benutzerdefinierte Betriebssystem die »Live ISO " -"wählen«-Schaltfläche klicken" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Im Datei-Auswahl-Fenster das heruntergeladene ISO-Abbild lokalisieren und " -"auswählen." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"USB-Stick einführen. Falls der USB-Stick bereits für die Erstellung eines " -"Live-Mediums benutzt wurde, muss er allenfalls zurückgesetzt werden. Die " -"App wird entsprechend nachfragen." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"»Live USB erzeugen« wählen, um das Abbild zu schreiben. Auf den Abschluss " -"des Vorganges warten, danach kann das Medium entfernt und die App " -"geschlossen werden." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Wie werden Vor-Versionen getestet" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Anleitung auf dem Fedora-Wiki für die Mithilfe beim Testen von Vor-Versionen" -" von Fedora" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architektur" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "AMI-Instanz starten" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Wählen Sie die nächstgelegene Region" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-Bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-Bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Starten!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Ausfuhrbestimmungen" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Lesen Sie die vollständigen Exportbestimmungen." - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Durch das Herunterladen von Fedora, erklären Sie sich mit den folgenden " -"Nutzungsbedingungen einverstanden." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Weiter lesen >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Informationen" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Antworten" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsoren" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora-Magazin" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Rechtliche Informationen" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora Workstation laden" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora Server laden" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Fedora Atomic laden" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternative Downloads" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Unterstützung" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Hilfe erhalten" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Häufige Fehler" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora Entwickler Portal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installationsanleitung" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Mitmachen" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Mithelfen" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora-Kontosystem" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora-Gemeinschaft" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora wird von Red Hat unterstützt." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Erfahren Sie mehr über die Verbindung zwischen Red Hat und Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. und weitere." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Bitte senden Sie Kommentare oder Korrekturen an das Websites-Team." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Sprache ändern" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Es gibt noch mehr \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Schlank. Leistungsstark. Everycloud bereit." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Fedora verbindet ein stabiles Fundament mit der neuesten Technologie - für " -"Ihre Anwendungen und Dienste." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentation und weitere Ressourcen" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Andere Wege, um ein Medium zu erhalten" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Erstehen Sie ein Fedora-Installationsmedium bei einem Online-" -"Händler oder einem lokalen Anbieter in Ihrer Region." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Sie können sich kein Fedora-Installationsmedium leisten? Beantragen Sie ein " -"Installationsmedium beim Fedora Free Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG-Schlüssel-Information" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Schlüssel-ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingerabdruck" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "UID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Holen Sie es sich hier:" diff --git a/getfedora.org/po/dz.po b/getfedora.org/po/dz.po deleted file mode 100644 index 37cba7b..0000000 --- a/getfedora.org/po/dz.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora-web/language/dz/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: dz\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/el.po b/getfedora.org/po/el.po deleted file mode 100644 index 4cef50a..0000000 --- a/getfedora.org/po/el.po +++ /dev/null @@ -1,2462 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Nikos Charonitakis , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-03-16 01:31-0400\n" -"Last-Translator: Nikos Charonitakis \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" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Επιλέξτε ελευθερία. Επιλέξτε Fedora" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Λιγότερες ρυθμίσεις, περισσότερη καινοτομία. Επιλέξτε μια εκδοχή του " -"Fedora

που ικανοποιεί τις ανάγκες σας, και ξεκινήστε αμέσως την " -"χρήση." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Κυκλοφόρησε το Fedora %(rel)s! Κάντε λήψη τώρα." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Λήψη τώρα" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Λήψη τώρα" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Θέλετε περισσότερες επιλογές Fedora;" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Διαβάστε την τεκμηρίωση." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Ελέγξτε τις σημειώσεις κυκλοφορίας για λεπτομερείς πληροφορίες για την " -"τρέχουσα κυκλοφορία. Για να μάθετε περισσότερα σχετικά με την χρήση του " -"Fedora και λεπτομέρειες όπως οι ελάχιστες απαιτήσεις συστήματος, δείτε την " -" επίσημη τεκμηρίωση." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Βρείτε βοήθεια." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Χρειάζεστε λίγη βοήθεια με το Fedora; Ελέγξτε το Ask " -"Fedora,εκεί μπορείτε να διαβάσετε αρχειοθετημένες ερωτήσεις άλλων " -"χρηστών, ή να γράψετε την δική σας ερώτηση." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Χορηγοί του Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Κατόπιν, εισάγετε το κλειδί GPG του Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Μπορείτε να επιβεβαιώσετε τις λεπτομέρεις των GPG κλειδιών εδώ." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Τώρα, ελέγξτε την εγκυρότητα του αρχείου CHECKSUM :" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Το αρχείο CHECKSUM πρέπει να έχει αποτύπωμα ενός από τα ακόλουθα κλειδιά:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Ευχαριστούμε που κάνατε λήψη του Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Η λήψη σας θα πρέπει να ξεκινήσει σε λίγα δευτερόλεπτα. Αν όχι, κάντε κλικ " -"στον παρακάτω σύνδεσμο:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Περιοχή" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Εκκίνηση" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Λήψη" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Άλλες λήψεις" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Έργο Fedora - Η σελίδα δεν βρέθηκε" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Η σελίδα δεν βρέθηκε" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Ελέγξτε το URL αν το έχετε εισάγει χειροκίνητα." - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Μάθε πως το Fedora σε προστατεύει." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Πρωτεύον" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Δευτερεύων" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora κλειδί GPG" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Εισαγωγή κλειδιών" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Μπορείτε πάντα να εισάγετε χειροκίνητα το κλειδί στην βάση δεδομένων του RPM" -" με την χρήση της παρακάτω εντολής:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Δείτε τις οδηγίες του rpm για περισσότερες πληροφορίες." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Εάν θέλετε να σιγουρευτείτε πως τα κλειδιά που είναι αποθηκευμένα στον " -"υπολογιστή σας ταιριάζουν με τα κλειδιά που αριθμούνται εδώ, μπορείτε να " -"χρησιμοποιήσετε το GnuPG για να ελέγξετε αν το αποτύπωμα των κλειδιών " -"ταιριάζει. Για παράδειγμα:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Υπηρεσίες βάσεων δεδομένων" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Διαθέσιμο μέσω DNF για Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Περισσότερες λεπτομέρειες" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Διαβάστε την πλήρη ανακοίνωση κυκλοφορίας στο Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Σημειώσεις κυκλοφορίας" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Οδηγίες εγκατάστασης" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Αρχιτεκτονική" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Εκκινήστε το!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Διαβάστε περισσότερα>" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Περί" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Σχετικά με το Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Χορηγοί" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Νομικά" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Υποστήριξη" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Λήψη Βοήθειας" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Συχνά bugs" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Οδηγός εγκατάστασης" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Συμμετοχή" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Συμμετοχή στο Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Πλανήτης Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Ομάδες ειδικού ενδιαφέροντος του Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Σύστημα Λογαριασμών του Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Κοινότητα Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "To Fedora επιχορηγείται από τη Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. και άλλοι." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Αλλαγή γλώσσας" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Εντάξει" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/en.po b/getfedora.org/po/en.po deleted file mode 100644 index d1429a9..0000000 --- a/getfedora.org/po/en.po +++ /dev/null @@ -1,210 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 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: 2014-10-17 22:35+0200\n" -"PO-Revision-Date: 2014-10-17 20:38+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: English (http://www.transifex.com/projects/p/fedora-web/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/index.html:110 -#, python-format -msgid "Fedora %s Release Schedule" -msgstr "Fedora %s Release Schedule" - -#: data/content/index.html:114 -msgid "Release State" -msgstr "Release State" - -#: data/content/index.html:115 -msgid "Release Date" -msgstr "Release Date" - -#: data/content/index.html:120 -msgid "Alpha Release Public Availability" -msgstr "Alpha Release Public Availability" - -#: data/content/index.html:124 -msgid "Beta Release Public Availability" -msgstr "Beta Release Public Availability" - -#: data/content/index.html:128 -msgid "Final Release Public Availability (GA)" -msgstr "Final Release Public Availability (GA)" - -#: data/content/index.html:133 -msgid "Read all the key milestones of the release schedule..." -msgstr "Read all the key milestones of the release schedule..." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Page Not Found" - -#: data/content/e/404.html:14 -msgid "Sorry! We couldn't find that file" -msgstr "Sorry! We couldn't find that file" - -#: data/content/e/404.html:24 -msgid "We apologize, but the file you requested could not be found." -msgstr "We apologize, but the file you requested could not be found." - -#: data/content/e/404.html:26 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Double-check the URL if you entered it manually. Did you copy it correctly?" - -#: data/content/e/404.html:27 -#, python-format -msgid "" -"Did a bad link bring you here? Contact the fedoraproject.org " -"webmaster and let them know which link brought you here." -msgstr "Did a bad link bring you here? Contact the fedoraproject.org webmaster and let them know which link brought you here." - -#: data/content/e/404.html:28 -#, python-format -msgid "" -"The file you are looking for may have moved. Check our main site at %(fpo)s or search our wiki." -msgstr "The file you are looking for may have moved. Check our main site at %(fpo)s or search our wiki." - -#: data/content/e/404.html:33 -msgid "Fedora Resources" -msgstr "Fedora Resources" - -#: data/content/e/404.html:36 -msgid "Fedora Documentation" -msgstr "Fedora Documentation" - -#: data/content/e/404.html:40 -msgid "Connect with the Fedora Community" -msgstr "Connect with the Fedora Community" - -#: data/content/e/404.html:44 -msgid "Download Fedora!" -msgstr "Download Fedora!" - -#: data/content/workstation/index.html:8 -#: data/content/workstation/index.html:19 -msgid "Fedora Workstation" -msgstr "Fedora Workstation" - -#: data/content/workstation/index.html:20 -msgid "" -"A reliable, user-friendly and powerful operating system for laptop and PC " -"hardware. Fedora Workstation comes with an easy-to-use Gnome desktop, plenty" -" of features, and great stability that anyone can enjoy." -msgstr "A reliable, user-friendly and powerful operating system for laptop and PC hardware. Fedora Workstation comes with an easy-to-use Gnome desktop, plenty of features, and great stability that anyone can enjoy." - -#: data/templates/cloud-tab.html:9 data/templates/cloud-tab.html:42 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architecture" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Launch" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Launch AMI instance" - -#: data/templates/cloud-tab.html:44 -msgid "Select the nearest region" -msgstr "Select the nearest region" - -#: data/templates/cloud-tab.html:55 -msgid "Launch it!" -msgstr "Launch it!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Export Regulations" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Read full export regulations" - -#: data/templates/footer.html:18 data/templates/footer.html:43 -#: data/templates/footer.html:68 -msgid "About Fedora" -msgstr "About Fedora" - -#: data/templates/footer.html:19 data/templates/footer.html:44 -#: data/templates/footer.html:69 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:20 data/templates/footer.html:45 -#: data/templates/footer.html:70 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:21 data/templates/footer.html:46 -#: data/templates/footer.html:71 -msgid "Documentation" -msgstr "Documentation" - -#: data/templates/footer.html:22 data/templates/footer.html:47 -#: data/templates/footer.html:72 -msgid "Fedora Wiki" -msgstr "Fedora Wiki" - -#: data/templates/footer.html:23 data/templates/footer.html:48 -#: data/templates/footer.html:73 -msgid "Events" -msgstr "Events" - -#: data/templates/footer.html:32 data/templates/footer.html:57 -#: data/templates/footer.html:82 -msgid "Server" -msgstr "Server" - -#: data/templates/footer.html:33 data/templates/footer.html:58 -#: data/templates/footer.html:83 -msgid "Workstation" -msgstr "Workstation" - -#: data/templates/footer.html:34 data/templates/footer.html:59 -#: data/templates/footer.html:84 -msgid "Cloud" -msgstr "Cloud" - -#: data/templates/footer.html:100 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora is sponsored by Red Hat." - -#: data/templates/footer.html:101 -msgid "Learn more about the relationship between Red Hat and Fedora >" -msgstr "Learn more about the relationship between Red Hat and Fedora >" - -#: data/templates/footer.html:102 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. and others." diff --git a/getfedora.org/po/en_GB.po b/getfedora.org/po/en_GB.po deleted file mode 100644 index 4adc733..0000000 --- a/getfedora.org/po/en_GB.po +++ /dev/null @@ -1,2449 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:23-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: en-GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Next, import Fedora's GPG key(s):" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"You can verify the details of the GPG key(s) here." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Now, verify that the CHECKSUM file is valid:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Launch" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Download" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Page Not Found" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "How does Fedora Project use GPG keys to sign packages?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importing keys" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"You can always import a key into RPM's database by hand using the following " -"command:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Refer to rpm manual for more information." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architecture" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Launch AMI instance" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Select the nearest region" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Launch it!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Export Regulations" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Read full export regulations" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "About Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Support" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Get Help" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Common Bugs" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installation Guide" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Join" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Join Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora Account System" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora Community" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora is sponsored by Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. and others." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/en_US.po b/getfedora.org/po/en_US.po deleted file mode 100644 index 94bf9ce..0000000 --- a/getfedora.org/po/en_US.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora-web/language/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/eo.po b/getfedora.org/po/eo.po deleted file mode 100644 index ee8262f..0000000 --- a/getfedora.org/po/eo.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Esperanto\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/es.po b/getfedora.org/po/es.po deleted file mode 100644 index c0da43d..0000000 --- a/getfedora.org/po/es.po +++ /dev/null @@ -1,2875 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# beckerde , 2014 -# Eduardo Villagrán M , 2014 -# William Moreno , 2014 -# Alex Puchades , 2015. #zanata -# Dennis Tobar , 2015. #zanata -# Edwind Contreras , 2015. #zanata -# Máximo Castañeda Riloba , 2015. #zanata -# William Moreno Reyes , 2015. #zanata -# Eduard Lucena , 2016. #zanata -# Máximo Castañeda Riloba , 2016. #zanata -# Máximo Castañeda Riloba , 2017. #zanata -# Adolfo Jayme , 2018. #zanata -# Eduard Lucena , 2018. #zanata -# Máximo Castañeda Riloba , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-15 07:43-0400\n" -"Last-Translator: Máximo Castañeda Riloba \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" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Código de conducta de Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Código de conducta de Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Compórtese como un miembro más de la comunidad, siga el Código de Conducta " -"de Fedora." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Código de conducta" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"La comunidad Fedora está hecha de una mezcla de profesionales y voluntarios " -"de todas partes del mundo, trabajando en cada aspecto de la distribución " -"desde la programación hasta la comercialización. La diversidad es una de " -"nuestras fortalezas, pero también puede conducir a problemas de comunicación" -" y a la infelicidad. Por eso tenemos algunas reglas básicas que pedimos a la" -" gente que siga cuando están usando los recursos del proyecto." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Esta no es una lista exhaustiva de las cosas que no puede hacer. Más bien " -"tómesela con el espíritu con el que fue ideada - una guía para hacer más " -"fácil ayudarse mutuamente." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Sea considerado. Su trabajo será usado por otras personas, y usted a su vez " -"dependerá del trabajo de otros. Cualquier decisión que usted tome afectará a" -" usuarios y colegas, y debe tener en cuenta las consecuencias al tomar " -"decisiones." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Sea respetuoso. No todos estamos siempre de acuerdo, pero discrepar no es " -"excusa para un mal comportamiento. De vez en cuando todos sufrimos " -"frustración, pero no podemos convertir esa frustración en ataques " -"personales. Tengamos en cuenta que una comunidad en la que sus miembros " -"están incómodos o se sienten amenazados no es una comunidad productiva. Los " -"miembros de la comunidad Fedora deben ser respetuosos tanto con otros " -"integrantes de la misma como con usuarios de Fedora y otras personas de " -"fuera de la comunidad Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Cuando no estamos de acuerdo intentamos encontrar la razón. Los desacuerdos," -" sean sociales o técnicos, ocurren todo el tiempo y Fedora no es la " -"excepción. Es importante que resolvamos los desacuerdos y las diferencias de" -" opinión constructivamente." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Recuerde que todos somos diferentes. La fuerza de Fedora proviene de su " -"diversa comunidad, gente de muy diversas procedencias. Personas distintas " -"aportan una perspectiva diferente de las cosas. Ser incapaz de entender el " -"punto de vista de alguien no significa que esté equivocado. No olvide que es" -" humano equivocarse, y culpar a los demás no nos lleva a ninguna parte; en " -"su lugar, ofrézcase a ayudar a resolver problemas y a aprender de los " -"errores." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Obtenga Fedora: descargue nuestro SO basado en Linux para escritorios de " -"desarrolladores, ejecución de contenedores y más" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Elija libertad. Elija Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Menos configuración, más innovación. Elija un sabor de Fedora

" -"adecuado a sus necesidades y póngase a trabajar de inmediato." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"¡Fedora %(rel)s %(state)s ya disponible! Pruébela desde la " -"sección de Descargas." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "¡Fedora %(rel)s ya disponible! Descárguela ahora." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Estación de trabajo" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Descargar" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation es un sistema operativo pulido y fácil de usar, para " -"ordenadores portátiles y de sobremesa, con un conjunto completo de " -"herramientas para desarrolladores y creadores de todo tipo." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Descargar ahora" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Servidor" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server es un sistema operativo poderoso y flexible que incorpora las " -"mejores y últimas tecnologías para centros de datos. Le pone en control de " -"todos sus servicios e infraestructura." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic proporciona la mejor plataforma para sus aplicaciones LDK " -"(Linux-Docker-Kubernetes)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora siempre es libre para que cualquiera lo use, modifique y distribuya. " -"Lo construyen y usan personas por todo el mundo que trabajan en conjunto " -"como una comunidad: el Proyecto Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "¿Quiere más opciones?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"La comunidad de Fedora también publica imágenes ARM, ediciones " -"alternativas en medio vivo, y otras variaciones de Fedora pensadas para " -"requerimientos específicos. Puede encontrarlas en Ediciones de Fedora o en Laboratorios de Fedora." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Permanezca conectado e informado." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"¿Quiere implicarse en el " -"proyecto? ¿Saber qué pasa en la comunidad? Lea las " -"últimas noticias y manténgase al tanto de las novedades es Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Lea la documentación." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"En las Notas de Lanzamiento encontrará información detallada de la versión " -"actual. Para aprender más sobre el uso de Fedora y detalles como los " -"requerimientos del sistema, vea la documentación " -"oficial." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Obtenga ayuda." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"¿Necesita ayuda con Fedora? Pruebe en Ask Fedora, donde " -"puede leer preguntas de otros usuarios o formular una propia." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Patrocinantes de Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"El proyecto Fedora está orgulloso de contar con el patrocinio de las " -"siguientes organizaciones..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Patrocinador principal" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. es el patrocinador principal del Proyecto " -"Fedora. Red Hat provee a Fedora de una amplia serie de recursos, entre los " -"que se encuentran empleados a tiempo completo, hardware y ancho de banda " -"para su infraestructura, financiación para sus eventos y consejo legal." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"El Proyecto Fedora también está agradecido con los siguientes patrocinadores" -" por su inestimable ayuda:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "¿Está interesado en patrocinar algo para Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contacte con admin@fedoraproject.org o pásese " -"por #fedora-admin en irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Comprobar la imagen descargada" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM e Instrucciones de comprobación" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "¿Cómo compruebo mi imagen?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Una vez que haya descargado la imagen, verifíquela por seguridad e " -"integridad. Para hacerlo, comience por descargar el archivo CHECKSUM " -"correspondiente en el mismo directorio en que descargó la imagen." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Para imágenes de 64 bits" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Para imágenes de 32 bits" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Para Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "Para imágenes aarch64" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "Para aarch64 en bruto" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Para la ISO de Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Para las imágenes de Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Para Contenedor" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "A continuación, importe las claves GPG de Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Puede verificar los detalles de las claves GPG aquí." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Ahora compruebe que el archivo CHECKSUM sea válido:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"El archivo CHECKSUM debe tener una firma adecuada de alguna de las " -"siguientes llaves:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 - arquitecturas secundarias (AArch64, PPC64, PPC64le, s390 y " -"s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Finalmente, ahora que el archivo CHECKSUM ha sido verificado, compruebe que " -"la suma de verificación de la imagen concuerde:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "Si la salida indica que el archivo es válido, entonces puede usarlo." - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "¿Cómo verifico mi imagen descargada en otro sistema operativo?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Lea estas instrucciones para verificar su imagen." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Obtenga Fedora Atomic: la mejor plataforma para sus aplicaciones en " -"contenedores" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Despliegue y escale sus aplicaciones en contenedores con una infraestructura" -" inmutable." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Descargue o ejecute en nubes públicas" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“Elegimos Fedora Atomic como la base de nuestra solución de " -"aprovisionamiento de clústeres Navops — Launch porque nuestros clientes " -"confían en los sistemas operativos de Red Hat y ya los usan. Nos encanta el " -"aspecto inmutable de Fedora Atomic; es perfecto para entornos de " -"contenedores.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Arquitecto jefe, Navops de Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host, del proyecto Atomic, es una plataforma ligera e inmutable " -"diseñada específicamente para la ejecución de aplicaciones en contenedores." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"La versión de Atomic Host proporcionada por Fedora usa los mismos " -"repositorios que Fedora Server, y lleva las últimas versiones de Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Actualizaciones OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Actualice sus sistema transaccionalmente con la última versión en OStree. " -"Haga sus servidores idénticos, y vuelva a su sistema inicial si hay algún " -"problema en la actualización." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Administre contenedores Docker, de sistema, aplicaciones Atomic y más desde " -"un cómoda herramienta de línea de comandos." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimizado para Kubernetes y OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"¿Está creando un cluster Kubernetes u Origin para sus aplicaciones en " -"contenedores? Ejecútelo sobre Fedora Atomic, la plataforma que necesita " -"sobre un sistema más pequeño y ligero." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "¿Listo para probar Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Descargue Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "¡Gracias por descargar Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Su descarga comenzará en unos segundos. Si no, puede obtenerla directamente " -"del siguiente enlace:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "¡Verifique su Descarga!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Tras descargar una imagen verifíquela para comprobar su seguridad e " -"integridad. Para ello, primero descargue el archivo CHECKSUM en el mismo " -"directorio en que descargó la imagen y siga estas " -"instrucciones." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "¡Verificar!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Descargue Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Descargue Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" -"Se generan versiones actualizadas de Atomic Host cada dos semanas, más o " -"menos." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"La última generación no cumplió con los criterios especificados para las " -"pruebas. Las imágenes disponibles, por tanto, son de hace más de " -"%(atomic_age)s días. En el blog del proyecto Atomic podrá encontrar " -"información sobre los problemas bloqueantes." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Estas son las últimas imágenes oficiales de Fedora Atomic Host, generadas " -"hace %(atomic_age)s días." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Imágenes Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host es un sistema operativo de vanguardia que sigue el modelo" -" del proyecto Atomic. Su diseño está basado en Kubernetes y contenedores. " -"Las imágenes que se publican aquí son una muestra de ese trabajo. Tenga en " -"cuenta que, aunque han pasado por varios niveles de pruebas automatizadas, " -"no siempre han estado sometidas a pruebas manuales por el equipo de calidad." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Antes de empezar a usar en producción una nueva versión, " -"pruébela. Si encuentra un problema podrá volver a la versión " -"anterior con las herramientas Atomic Host. En ese caso, por favor ayúdenos " -"informando del problema o incluso enviando correcciones." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Las imágenes de Fedora Atomic Host se actualizan más o menos cada " -"dos semanas, no según el ciclo semestral de Fedora. Dado el gran " -"ritmo de desarrollo, sólo hay soporte para la última versión de Fedora." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Diferentes imágenes Fedora Atomic Host pasan por distintos niveles " -"de pruebas automatizadas. Puede aprender más sobre el proyecto " -"Atomic en projectatomic.io, y aquí " -"puede consultar el estado actual de las pruebas." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Imágenes Atomic Host para la nube pública Amazon EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Los enlaces siguientes le mostrarán listados de AMI de máquinas virtuales " -"Atomic Host (HVM) por región con botones para lanzarlas en su cuenta Amazon " -"Web Services. También aparecen los ID para su uso desde la consola AWS o las" -" herramientas de línea de comandos." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Formato GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"Las AMI con formato GP2 usan almacenamiento SSD más rápido; úselas si " -"necesita mayor velocidad, pero tenga en cuenta que sus costes de " -"almacenamiento serán mayores." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "AMI HVM GP2" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Cerrar" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "AMI HVM GP2 de Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Región" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "ID AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Lanzar" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Formato estándar" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Las AMI de formato estándar son más adecuadas si no accede mucho a los datos" -" y quiere mantener sus costes de almacenamiento bajos." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "AMI HVM Estándar" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "AMI HVM Estándar de Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Formato estándar" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Imágenes Atomic Host para Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Hay disponibles cajas vagrant de Fedora Atomic Host para los proveedores " -"VirtualBox y Libvirt. Puede iniciar Fedora Atomic Host en una caja vagrant " -"descargando las imágenes de Fedora o usando las herramientas de vagrant para" -" obtener las imágenes de la nube Vagrant de HashiCorp." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Ver descargas Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Imágenes Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Imágenes de cajas Vagrant para su despliegue con Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Imagen VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Probablemente esta sea su opción si usa Vagrant en Mac OS X o Windows." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Descargar" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Imagen Vagrant VirtualBox Base de 64 bits %sMB" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Imagen libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Esta es la mejor opción si está usando Vagrant en Fedora." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Imagen Vagrant libvirt/KVM Base de 64 bits %sMB" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Descargas usando las herramientas de Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Obtención de las imágenes mediante herramientas Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Puede usar este comando para obtener las imágenes de cajas Vagrant de HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Si ya ha usado antes Fedora %(rel)s Atomic Host en Vagrant en su sistema, " -"puede obtener la última versión mediante:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Para obtener más información sobre el uso de Vagrant en Fedora Workstation, " -"acuda a nuestra página wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Imágenes de Atomic Host para entornos de nube" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Imagen qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Esta es una imagen Fedora %(rel)s Cloud Atomic Host en formato Qcow2 para " -"usar con OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Imagen Qcow2 de 64 bits %sMB" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Imagen en bruto" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Imagen Fedora %(rel)s Cloud Atomic Host en formato crudo comprimido. Si no " -"está seguro de qué usar, pruebe con esto." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Imagen cruda de 64 bits %sMB comprimida con xz" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Otras Descargas" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Imagen ISO de Atomic Host (%s MB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Imagen de contenedor (%s MB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Pruebe una versión prelanzamiento" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Estamos trabajando en nuestra próxima versión." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "¡Ayúdenos a poner F%(rel)s a punto!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Descargue las imágenes de F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Cómo probar las versiones prelanzamiento" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Recursos de apoyo" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: cómo empezar" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Documentación para empezar a usar Project Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: lista de correo" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Únase a la lista de correo del proyecto en atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Únase al canal de Project Atomic #atomic en " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verificar" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifique su imagen" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Descargue Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Estas son las últimas imágenes de Fedora Atomic Host, generadas el " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Este es un software de pre-lanzamiento y lo mantiene el Grupo de Trabajo de Atomic. Por favor dirija sus " -"preguntas a su lista de correo o a " -"%(team_irc)s en freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Todos los inconvenientes y errores de software deben reportarse mediante Red Hat Bugzilla. El Proyecto Fedora no garantiza su " -"conveniencia o utilidad." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "AMI HVM GP2 de Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "AMI HVM Estándar de Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Hay disponibles cajas vagrant de Fedora Atomic Host para los proveedores " -"VirtualBox y Libvirt. Puede iniciar Fedora Atomic Host en una caja vagrant " -"descargando las imágenes de Fedora o usando las herramientas de vagrant para" -" obtener las imágenes de HashiCorp's Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Esta es una imagen Fedora %(rel)s %(state)s Cloud Atomic Host en formato " -"Qcow2 para usar con OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Esta es una imagen Fedora %(rel)s %(state)s Cloud Atomic Host en formato " -"crudo comprimido. Si no tiene claro lo que necesita, pruebe con esto." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Proyecto Fedora - Página no encontrada" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Página no encontrada" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Discúlpenos, no encontramos el archivo o página que solicitó." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Algunas ideas para solucionarlo" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Compruebe la URL si la introdujo manualmente. ¿Es correcta?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"¿Ha llegado siguiendo un enlace? Contacte con el " -"administrador del sitio web e indíquele dónde lo encontró." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Puede que la página o el archivo haya cambiado de sitio. Busque en el sitio principal o explore nuestra wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Claves de Firma de Paquetes" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Esta página lista las llaves GPG públicas usadas para firmar paquetes en " -"Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Aprenda cómo lo protege Fedora" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora usa paquetes firmados por GPG para asegurar que su integridad no haya" -" sido comprometida." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Lea el FAQ para aprender más »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Llaves Usadas Actualmente" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primaria" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secundaria" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "¿Busca las llaves obsoletas?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Claves de Firma de Paquetes Obsoletas" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Esta página lista las llaves GPG públicas que ya no se usan para firmar " -"paquetes en Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Claves Obsoletas y en Desuso" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Clave GPG de Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Los paquetes en medios de instalación están firmados con esta clave. Los " -"repositorios son fedora, fedora-updates " -"para Fedora 7-9, y core y core-updates " -"para Fedora Core (versiones 6 y anteriores). En http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html encontrará información sobre la " -"razón por la que ya no se usa esta clave." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 para pruebas" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora para Pruebas" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Si participa en la prueba de paquetes, ésta es la clave que usará para " -"verificar los paquetes del repositorio de pruebas. Con esta clave se firman " -"los paquetes que están en el repositorio fedora-testing. " -"Vea en http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html para más información de por qué " -"esta clave es obsoleta." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 para pruebas" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 para pruebas" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Si está usando Fedora Extras con Fedora Core, use este paquete del " -"repositorio extras. Esta clave no se usa tras haber llegado" -" Fedora Core 6 y Extras a su final de vida (7 de Diciembre de 2007). Esta " -"clave no se incluye en el paquete fedora-release en Fedora " -"7 y posteriores." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Esta clave se usó para paquetes lanzados por el proyecto Fedora Legacy para " -"actualizar versiones que llegaron a su final de vida oficial. El proyecto " -"Fedora Legacy ya no existe, por lo que la clave no se usará más para firmar " -"paquetes. La misma ya no se incluye en el paquete fedora-" -"release en Fedora 7 y posteriores." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ de Firma de Paquetes" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Aprenda cómo Fedora hace uso de GPG para firmar paquetes para garantizar su " -"seguridad." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "¿Cómo utiliza el Proyecto Fedora las llaves GPG para firmar paquetes?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Todos los paquetes RPM estables publicados por el Proyecto Fedora van " -"firmados con GPG. Por defecto, tanto dnf como las herramientas gráficas de " -"actualización comprueban esas firmas y no instalarán paquetes sin firmar o " -"con una firma incorrecta. Siempre debería comprobar la firma de un paquete " -"antes de instalarlo. Estas firmas aseguran que los paquetes que instala son" -" los generados por el Proyecto Fedora y que no han sido modificados (ya sea " -"de forma accidental o maliciosa) por el espejo o la web de donde los " -"obtiene." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Los paquetes disponibles en el subsistema Koji no contienen firmas, por lo " -"que debería utilizarlos con precaución. Igualmente es posible que no estén " -"firmados los paquetes más recientes del repositorio Rawhide." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importando llaves" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Las claves están incluidas en el paquete fedora-release, " -"puede encontrarlas en el directorio /etc/pki/rpm-gpg. " -"Tenga en cuenta que el proyecto Fedora no usa todas las claves de ese " -"directorio: algunas son para firmar paquetes de Red Hat Enterprise Linux o " -"ya no se usan. Si utiliza paquetes de Red Hat Enterprise Linux, vea https://www.redhat.com/security/team/key. Las claves usadas" -" por Fedora están activadas en la configuración de repositorios de dnf, por " -"lo que no será necesario que las importe de forma manual." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Además del paquete fedora-release y de esta página web, puede descargar las " -"claves de Fedora de cualquier servidor público de claves, como keys.gnupg.net:" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Para algunos repositorios, como los de paquetes estables y de prueba en la " -"configuración predeterminada, dnf busca la llave adecuada y" -" solicita la confirmación del usuario antes de importarla, si es que dicha " -"clave no estaba aún en la base de datos rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Siempre se puede importar manualmente una llave en la base de datos RPM, " -"utilizando el siguiente comando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Diríjase al manual de rpm para obtener más información." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Si desea verificar que las llaves instaladas en su sistema coincidan con las" -" listadas aquí, puede utilizar GnuPG para comprobar que coincidan las " -"huellas de las llaves. Por ejemplo:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Obtenga Fedora Server: la última tecnología para sus aplicaciones y " -"servicios" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Ejecute sus aplicaciones en un sistema operativo Linux de servidor con la " -"última tecnología libre." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Ahora con contenido en varias versiones con ciclos de vida independientes, " -"de forma que su servidor puede adaptarse tanto despacio como rápido según el" -" componente." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server es un sistema operativo de servidor apoyado por la comunidad, " -"que da a los administradores con experiencia en cualquier sistema operativo " -"acceso a las últimas tecnologías disponibles en la comunidad de código " -"abierto." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Presentamos Modularity" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularity trae un nuevo repositorio modular que proporciona varias " -"versiones de software con ciclos de vida independientes." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Elija la versión que más le convenga de una aplicación o de un lenguaje, que" -" se mantendrá incluso cuando actualice su SO." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Conozca más acerca de Modularity" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Administración Sencilla" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Administre su sistema con la poderosa y moderna interfaz de Cockpit. Vea y " -"controle el rendimiento y el estado de su sistema, y despliegue y administre" -" servicios basados en contenedores." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Servicios de Base de Datos" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server incluye un servidor de base de datos escalable de nivel " -"empresarial impulsado por el proyecto de código abierto PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Solución completa de Dominio Empresarial" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Eleve el nivel de su red Linux con administración avanzada de identidad, " -"DNS, servicios de certificados e integración con dominios Windows(TM) " -"mediante FreeIPA, el controlador de dominio de código abierto." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"“Para DevConf US necesitaba un sistema para gestionar la conferencia. " -"Encontré regcfp, de Patrick Uiterwijk. Sin embargo, no funciona en nodejs 8 " -"de F27. ¡Ejecutar F28 Server y seleccionar el flujo \"nodejs:6\" funcionó a " -"las mil maravillas!”" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "Copresidente de DevConf US" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "¿Listo para probar Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Descargar Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Descargar Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Imagen de instalación de 64 bits %sGB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"La imagen de instalación de Fedora Server le permitirá crear un medio con el" -" que su computadora podrá iniciar e instalar el sistema directamente en su " -"disco" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Para usar esta imagen necesita una unidad que pueda grabar DVDs, o una " -"unidad USB que sea al menos tan grande como la imagen." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Si quiere probar las nuevas características modulares de Fedora Server, " -"visite la sección Uso de módulos de la " -"documentación de Modularity. Si quiere información sobre Modularity en " -"general, visite el sitio web en pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Imagen de instalación por red:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Imagen de 64 bits %sMB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "Imagen aarch64 %sMB" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "Imagen ISO DVD:" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "Imagen de disco en bruto:" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Descargue las imágenes de F%(rel)s Alpha" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Descargue las imágenes de F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Más Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Tecnología ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "¿Cómo hago un medio arrancable a partir de la imagen Viva?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Después de descargar la imagen, tendrá que hacer un medio arrancable a " -"partir de la misma. Puede grabar la imagen sobre un DVD en " -"blanco, o bien escribir la imagen sobre un dispositivo " -"USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "¿Cómo inicio desde el medio de instalación?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Consulte la documentación de su sistema sobre el procedimiento a seguir para" -" arrancar desde un medio distinto del disco duro. El proceso puede diferir " -"según el fabricante y el modelo de su ordenador. Puede que estos consejos comunes le sean útiles." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Descargar Fedora %s para servidores" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Descargar Fedora %(rel)s Server %(state)s" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Imagen de Instalación de 64 bits %sGB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Este es software pre-lanzamiento y está respaldado por el Grupo de Trabajo Server. Dirija sus preguntas a su" -" lista de correo o %(team_irc)s en freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Lea las Notas de Lanzamiento para mayor " -"información sobre los cambios y nuevas funcionalidades, y la página de Errores de Software Comunes para información" -" de errores de comunes y cómo evitarlos." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "¿Cuándo estará disponible Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Leer todos los hitos claves del cronograma de lanzamiento... " - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Tras descargar una imagen verifíquela para comprobar su seguridad e " -"integridad. Para ello, primero descargue el archivo CHECKSUM en el mismo " -"directorio en que descargó la imagen y siga estas " -"instrucciones." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Obtenga Fedora Workstation: el mejor sistema de escritorio para " -"desarrolladores" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Esta es la estación de trabajo Linux que estaba esperando." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation es un sistema operativo fiable, potente y fácil de usar " -"para equipos portátiles y de escritorio. Es funcional para una amplia gama " -"de desarrolladores, desde aficionados y estudiantes hasta profesionales en " -"entornos empresariales." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"«La gran cantidad de herramientas que incluye Fedora
me ayudan a " -"hacer mi trabajo.
Simplemente funciona»." - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Ingeniera de rendimiento JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Una elegante interfaz de usuario" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Concéntrese en su código con el entorno de escritorio GNOME 3. GNOME está " -"desarrollado teniendo en cuenta las necesidades de los desarrolladores y " -"está libre de distracciones innecesarias, de manera que pueda concentrarse " -"en lo que de verdad importa." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Completo juego de herramientas libres" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Evite el trabajo de tratar de encontrar o compilar las herramientas que " -"necesita. Con el juego completo de lenguajes de código abierto, herramientas" -" y utilidades de Fedora todo esta a un clic o comando de distancia. Incluso " -"hay proyectos de hospedaje y repositorios como COPR para compartir su código" -" y crear compilaciones disponibles para toda la comunidad." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes y otras herramientas de virtualización" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Configure máquinas virtuales rápidamente para probar su código en varias " -"plataformas mediante GNOME Boxes. O bien, aproveche herramientas de " -"virtualización potentes y extensibles para un mayor control." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Compatibilidad con Docker incorporada" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Haga contenedores para sus aplicaciones, o despliéguelas fácilmente en " -"Fedora usando la última tecnología como Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "¿Listo para probar Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Descargar Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Descargar Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Fedora Media Writer para Mac OS X (%s MB)" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "ISO para Linux de 64 bits (%s GB)." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Sólo necesita una descarga para instalaciones nuevas. Siga " -"estas instrucciones si lo que quiere es actualizar." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Fedora Media Writer para Windows (%s MB)" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" -"Descargue la versión de Fedora Media Writer correspondiente a su sistema " -"operativo." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "¿Necesita instrucciones o una versión diferente?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Ejecución de Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Para ejecutar Fedora Workstation necesita:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (arriba encontrará el enlace para la descarga)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Un dispositivo USB con al menos %s GB de espacio disponible" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation se distribuye mediante Fedora Media Writer. Descargue el programa para su plataforma y siga los pasos " -"que se le indiquen para generar una versión viva (vea '¿Qué significa imagen" -" \"Viva\"?' en las notas a la derecha) de Fedora Workstation en una unidad " -"USB. Después podrá ejecutar esa versión de Fedora Workstation desde el USB." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"De forma opcional puede instalar Fedora Workstation en un equipo con al " -"menos procesador de 1 GHz, 1 GB de RAM, y 10 GB de espacio disponible. Para " -"ello ejecute en ese equipo la versión viva de Fedora Workstation desde el " -"dispositivo USB, abra la aplicación Fedora Media Writer y siga las " -"instrucciones que aparecerán en pantalla para completar la instalación." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plataformas admitidas" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer funciona en las siguientes plataformas:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Parece que está usando Mac OS X, por lo que le " -"proporcionamos la descarga correspondiente. Si ese no es su sistema " -"operativo o quiere obtener una versión para otro sistema, pulse el botón " -"\"Ver todas las descargas\"." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Parece que está usando Linux, por lo que le proporcionamos " -"la descarga correspondiente. Si ese no es su sistema operativo o quiere " -"obtener una versión para otro sistema, pulse el botón \"Ver todas las " -"descargas\"." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Parece que está usando Windows, por lo que le " -"proporcionamos la descarga correspondiente. Si ese no es su sistema " -"operativo o quiere obtener una versión para otro sistema, pulse el botón " -"\"Ver todas las descargas\"." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Ver todas las descargas" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Disponible a través de DNF para Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Más detalles" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "¿Cómo se usa esta ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Compruebe esta imagen" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Imagen viva de 64 bits %sGB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Imagen Viva de 32 bits %sGB" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Imágenes de instalación por red:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Imagen de 32 bits %sMB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Pruebe Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic proporciona una imagen inmutable del SO y actualizaciones mediante " -"OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "Imagen Atomic de 64 bits %sGB" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Más información" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Anuncio de lanzamiento" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Lea el anuncio de lanzamiento en la revista Fedora." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Notas de lanzamiento" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Conozca los cambios desde la versión anterior, así como los requisitos " -"mínimos y las recomendaciones para el uso de Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Guía de instalación" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Le recomendamos que la eche un vistazo antes de instalar el sistema, pues en" -" ella se responde a algunas de las preguntas más frecuentes." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Problemas comunes" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Una excelente lista de consulta si se encuentra con algún problema en la " -"instalación o uso de Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "¿Qué significa imagen \"Viva\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer creará un sistema Fedora Workstation completo, que podrá" -" ejecutar directamente desde su dispositivo USB. Puede usar la imagen viva " -"para probar Fedora sin necesidad de realizar cambios en su disco duro." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Cuando esté seguro de que es lo que quiere, puede instalar Fedora a su disco" -" duro desde la versión viva de Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Ediciones de Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Descargar Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Descargar Fedora %(rel)s Workstation %(state)s " - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Actualice mediante DNF si ya está usando Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Este es software pre-lanzamiento y está respaldado por el Grupo de Trabajo Workstation. Dirija sus preguntas" -" a su lista de correo o %(team_irc)s en " -"freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Cómo ejecutar versiones prelanzamiento de Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Para ejecutar una versión de prueba de Fedora Workstation necesita:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (más abajo encontrará el enlace para la descarga)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"La imagen ISO de la versión viva de Fedora que quiera " -"usar" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ADVERTENCIA: Este procedimiento destruye todos los datos que tenga en el " -"dispositivo USB, asegúrese de hacer una copia de lo que quiera mantener " -"antes de empezar." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" -"Descargue la aplicación Fedora Media Writer (puede encontrarla más abajo)." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Descargue la imagen ISO que quiera usar." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Abra Fedora Media Writer. Dependiendo de su sistema y configuración, es " -"posible que se le solicite una contraseña para darle a la aplicación los " -"permisos que necesita." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Elija \"Imagen personalizada\" de la lista." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" -"En la página de Imagen personalizada use el botón \"Seleccione ISO Vivo\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"En la ventana de selección de archivo, seleccione la imagen ISO que se " -"descargó." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Inserte el dispositivo USB en el equipo. Si ya lo ha usado antes para crear " -"medios vivos es posible que tenga que restaurarlo a los ajustes de fábrica. " -"En ese caso la aplicación le preguntará si hacerlo." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Pulse \"Crear USB Vivo\" para escribir la imagen. Espere a que termine el " -"proceso, tras lo cual podrá retirar el dispositivo y cerrar la aplicación." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "¡Verificar imagen de 64 bits!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "¡Verificar imagen de 32 bits!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Cómo probar las versiones prelanzamiento" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Guía wiki de Fedora que explica cómo ayudar con las pruebas de versiones " -"prelanzamiento de Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arquitectura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Depósito raíz" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Lanzar instancia AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Seleccione la región más cercana" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 bits (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 bits (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "¡Lanzar!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Normas de exportación" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Lea las regulaciones completas de exportación" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Al continuar y descargar Fedora se compromete a cumplir los siguientes " -"términos y condiciones." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Leer más >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Acerca de" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Acerca de Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Revista de Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Legal" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Descargas alternativas" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Asistencia" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obtener ayuda" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Errores comunes" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portal Fedora para desarrolladores" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guía de instalación" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Unirse" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Únase al Proyecto Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Grupos de interés especial (SIG)" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistema de Cuentas de Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunidad Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora está patrocinado por Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Conozca más sobre la relación entre Red Hat y Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. y otros." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Envíe cualquier comentario o corrección al equipo de websites." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Cambiar idioma" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Aceptar" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Todavía hay más \"Fedora\"" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Liviana. Poderosa. Lista para cualquier nube." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"La última tecnología. Una base estable. Juntos, para sus aplicaciones y " -"servicios." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentación y otros recursos" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Antes de instalar Fedora, cerciórese de que su sistema cumpla con los " -"requisitos mínimos. Consulte las notas de " -"publicación en línea para ver los requisitos mínimos y algunas " -"recomendaciones." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"También tenemos una guía de instalación " -"completa. Recomendamos que la revise, ya que ofrece respuestas a muchas " -"preguntas comunes." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Otras formas de obtener un medio de instalación" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Puede comprar medios de instalación de Fedora de vendedores " -"en línea o algún vendedor local en su área." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"¿No puede permitirse el precio de un medio de instalación? Solicite un medio" -" de instalación de Fedora desde el Programa de Medios " -"Gratuitos de Fedora." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Información de Clave GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID de Clave" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Huella digital" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Obténgala de:" diff --git a/getfedora.org/po/et.po b/getfedora.org/po/et.po deleted file mode 100644 index 60d05d1..0000000 --- a/getfedora.org/po/et.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Estonian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/eu.po b/getfedora.org/po/eu.po deleted file mode 100644 index 36dd25a..0000000 --- a/getfedora.org/po/eu.po +++ /dev/null @@ -1,2460 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Asier Iturralde Sarasola , 2015. #zanata -# Mikel Olasagasti Uranga , 2016. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2016-04-22 02:42-0400\n" -"Last-Translator: Mikel Olasagasti Uranga \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" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Aukeratu askatasuna. Aukeratu Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Lan-estazioa" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Deskargatu orain" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Zerbitzaria" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server datu-zentro teknologia berrienak dituen sistema eragile " -"ahaltsu eta malgua da. Zure azpiegitura eta zerbitzu guztiak zure " -"kontrolpean jartzen ditu." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora doan/libre da beti edozeinek erabili, aldatu eta bana dezan. Fedora " -"komunitate bezala elkarrekin lan egiten duten mundu osoko jendearen artean " -"eraiki eta erabiltzen da: Fedora Proiektua." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Fedora aukera gehiago nahi dituzu?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Irakurri dokumentuak." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora babesleak" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Fedora proiektua harro dago ondorengo erakundeak babesle bezala izateaz..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Babesle nagusia" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Egiaztatu deskargatutako irudia" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Nola egiazta dezaket deskargatu dudan irudia?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Ondoren, inportatu Fedoraren GPG gakoa(k):" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Hemen egiazta ditzakezu GPG gakoaren/gakoen " -"xehetasunak." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Orain, egiaztatu CHECKSUM fitxategia baliozkoa dela:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Mila esker Fedora deskargatzeagatik!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Zure deskargak segundo gutxi barru hasi behar luke. Hala ez bada, klikatu " -"beheko esteka:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Egiaztatu zure deskarga!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Itxi" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Zonaldea" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI IDa" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Abiarazi" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox irudia" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Deskargatu" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM irudia" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Beste deskargak" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Egiaztatu zure irudia" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Proiektua - Orria ez da aurkitu" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Orria ez da aurkitu" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Sentitzen dugu baina ezin izan dugu aurkitu eskatu duzun fitxategia edo " -"orria." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Irakurri MEGk (FAQ) gehiago jakiteko" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Unean erabilitako gakoak" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Nagusia" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Bigarren mailakoa" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Erabiltzen ez diren gakoak eta zaharkituak" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG gakoa" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 probak" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Proba" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 probak" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 probak" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora gehigarriak" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Paketeak sinatzearen MEG" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Nola erabiltzen ditu Fedora Proiektuak GPG gakoak paketeak sinatzeko?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Gakoak inportatzea" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Fedora Server probatzeko prest?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Deskargatu Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Deskargatu Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Deskargatu Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Noiz argitaratuko da Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Hau da espero zenuen Linux lan-estazioa." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation zure mahaigaineko eta ordenagailu eramangarrientzako " -"sistema eragile fidagarri, erabilerraz eta dotorea da. Garatzaile mota " -"guztientzako egokia, amateur eta ikasleetatik hasita enpresa inguruneko " -"profesionaletaraino." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Erabiltzaile-interfaze dotorea" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Kode irekiko tresna sorta osoa" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Fedora Workstation probatzeko prest?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Deskargatu Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Deskargatu Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Deskargatu Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Deskargatu Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arkitektura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Abiarazi AMI instantzia" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Hautatu gertueneko zonaldea" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Abiarazi!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Honi buruz" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedorari buruz" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Babesleak" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora aldizkaria" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Eskuratu Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Eskuratu Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Sostengua" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Lortu laguntza" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Galdetu Fedora-ri" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Ohiko erroreak" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Instalazio gida" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Bat egin" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Bat egin Fedorarekin" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Fedora Planeta" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora Interes Bereziko Taldeak (SIGak)" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora kontu sistema" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora Komunitatea" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora Red Hat-ek babesten du" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Jakin gehiago Red Hat eta Fedoraren arteko erlazioari buruz »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. eta besteak." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Aldatu hizkuntza" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Ados" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Teknologia berriena. Oinarri sendoa. Biak batera, zure aplikazio eta " -"zerbitzuentzat." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentazioa eta beste baliabideak" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG gakoaren informazioa" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Gakoaren IDa" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Hatz-marka" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Eskuratu hemendik:" diff --git a/getfedora.org/po/fa.po b/getfedora.org/po/fa.po deleted file mode 100644 index dc9b235..0000000 --- a/getfedora.org/po/fa.po +++ /dev/null @@ -1,2651 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Ahmad Haghighi , 2017. #zanata -# Mahdi Sefidi , 2017. #zanata -# Ahmad Haghighi , 2018. #zanata -# Pooria Teimoory , 2018. #zanata -# Robert Mayr , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-20 10:09-0400\n" -"Last-Translator: Robert Mayr \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" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "مرام‌نامه فدورا" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "مرام‌نامه‌ی فدورا" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "به عنوان یک عضو از جامعه رفتار کرده و مرام‌نامه را رعایت کنید." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "مرام‌نامه" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"جامعه‌ی فدورا متشکل از حرفه‌ای‌ها و داوطلب‌هایی از سرتاسر دنیاست که بر روی " -"تمامی جنبه‌های توزیع، از کدزنی گرفته تا بازاریابی کار می‌کنند. تنوع و " -"گوناگونی از بزرگ‌ترین نقاط قوت ماست، منتهی این می‌تواند سبب تراکنش و مسائل " -"ناخوشایندی شود. که برای خاتمه دادن به آن‌ها، ما یک سری دستور‌العمل داریم و " -"از کاربران می‌خواهیم تا وقتی‌که از منابع پروژه استفاده می‌کنند، آن‌ها را " -"رعایت کنند." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"این یک فهرست کامل از چیزهای که نمیتوانید انجام دهید نیست. بلکه، به این " -"معنی‌است که در‌آن -یک راهنما برای آسان‌سازی عالی‌بودن یکدیگر - " -"در‌نظر‌گرفته‌شده‌است. " - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -" احتیاط‌کنید. کار‌شما مورد استفاده‌ی دیگران قرار‌خواهد‌گرفت، و شما به نوبه‌ی" -" خود به کار‌دیگران مربوط‌خواهید‌بود. هر‌تصمیمی شما می‌گیرید بر کاربران و " -"همکاران تأثیر‌خواهد‌گذاشت، و شما باید در هنگام تصمیم‌گیری عواقب‌آن را " -"در‌نظربگیرید. " - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"با‌احترام رفتار‌کنید. همه‌ی ما همیشه موافق‌نخواهیم‌بود، اما مخالفت برای " -"رفتارهای‌ضعیف و نادرست بهانه‌نیست. ممکن‌است همه‌ی ما درحال‌حاضر و بعدها شاهد" -" برخی ناامیدی‌ها باشیم، اما ما نمی‌توانیم اجازه‌دهیم که ناامیدی به یک " -"تعرض‌شخصی بدل‌شود. اینکه به‌یاد‌داشته‌باشیم که یک جامعه‌ای که در آن افراد " -"احساس ناراحتی و تهدید می‌کنند یک جامعه‌ی پربار نیست، مهم‌است. کاربران جامعه " -"فدورا باید درهنگام رفتار با دیگر همکاران با‌احترام رفتار‌کنند، همچنین با " -"افراد خارج از جامعه‌ی فدورا و کاربران فدورا. " - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -" هنگامی که ما مخالفت‌می‌کنیم، ما تلاش‌می‌کنیم که دلیل را درک‌کنیم. اختلاف‌نظرها، چه \n" -"اجتماعی و چه فنی، همیشه اتفاق‌می‌افتد و استثنا ندارد. مهم اینست که ما اختلاف‌نظرها و دیدگاه‌های متفاوت را به‌طور‌سازنده برطرف‌کنیم. " - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -" به‌یاد داشته‌باشیم که ما متفاوت‌هستیم. توانایی‌فدورا از جامعه‌ای متنوع نشأت‌می‌گیرد، افرادی از میان طیف‌ گسترده‌ای از علوم. افراد متفاوت دیدگاه‌های متفاوتی نسبت به مشکلات دارند. قادر به فهمیدن اینکه چرا فردی بر یک‌دیدگاه ثابت مانده‌است،‌به این‌معنی نیست که آنها \n" -"اشتباه‌می‌کنند. فراموش‌نکنید که این انسانها که به غلط یکدیگر را قضاوت‌می‌کنند و یکدیگر را متهم‌می‌کنند ما را به‌ جایی‌نمی‌رسانند، و نه برای کمک به حل مسائل و نه کمک به یادگیری از اشتباهات . " - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "انتخاب آزادی. انتخاب فدورا." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"برپاسازی کمتر، نوآوری بیشتر. یکی از طعم‌های فدورا

متناسب و " -"همسو با نیازتان را انتخاب کنید، و همین الان شروع به کار کنید." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"فدورا %(rel)s %(state)s منتشر شد! در قسمت دانلود آن را تست" -" کنید." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "فدورا %(rel)s .منتشر شد! هم اکنون آن را دریافت کنید " - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "ایستگاه‌کار" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "هم‌اکنون دانلود کنید." - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"فدورا نسخه‌ی ایستگاه کار، یک سیستم‌عامل آراسته شده و با کاربری آسان برای " -"لپ‌تاپ‌ها و رایانه‌های رومیزی است، که دارای مجموعه‌ای کامل از ابزار‌هایی " -"گوناگون برای توسعه دهندگان و سازندگان می‌باشد." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "هم‌اکنون دانلود کنید" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "کارگزار" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"نسخه‌ی کارگزار فدورا، یک سیستم‌عامل قدرتمند و منعطف است که بهترین و آخرین " -"فناوری‌های دیتاسنترها را در خود دارد که کنترل تمامی زیرساخت‌ها و خدمات شما " -"را در اختیارتان قرار می‌دهد." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "اتمی" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"فدورا اتمی بهترین بستر را برای پشته‌ برنامه (Linux-Docker-Kubernetes (LDK " -"شما فراهم می‌آورد." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"استفاده، تغییر و توزیع کردن فدورا برای هرکسی آزاد است. فدورا توسط افرادی از " -"سراسر دنیا ساخته شده و مورد استفاده قرار می‌گیرد، افرادی که همگی تحت یک " -"جامعه، یعنی همان پروژه‌ی فدورا با یکدیگر کار می‌کنند." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "آیا انتخاب‌ها و گزینه‌های بیشتری از فدورا می‌خواهید؟" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"جامعه‌ی فدورا همچنین در راستای نیاز‌های خاص، ARM تصاویر، نمونه‌های زنده‌ی Spinها و نمونه‌های تغییر یافته‌ای از فدورا را منتشر کرده است.\n" -"آن‌ها را در وب‌سایت‌های Fedora Spins یا Fedora Labs مشاهده کنید." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "متصل و آگاه باشید." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"آیا می‌خواهید مشارکت کنید؟ " -"می‌خواهید بدانید در جامعه چه می‌گذرد؟ " -"آخرین اخبار و چیز‌های جالب را درمجله " -"فدورابخوانید." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "مستندات را مطالعه کنید." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"برای دریافت اطلاعات جزئی در مورد انتشار فعلی Release Notes را مطالعه کنید. " -"برای یادگیری بیش‌تر در مورد فدورا و جزئیاتی مانند نیاز‌مندی‌های سیستم official documentation را مشاهده نمایید." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "دریافت راهنمایی" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"آیا در مورد فدورا نیاز به کمک دارید؟ سری به Ask Fedora " -"بزنید، جایی که در آن می‌توانید آرشیوی‌ از سوالات سایر اعضا را ببینید، یا " -"سوال خودتان را مطرح کنید." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "اسپانسر‌های فدورا" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "پروژه‌ی فدورا مفتخر است که شرکت‌های زیر از آن حمایت می‌کنند..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "اسپانسر اصلی" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"ردهت, Inc. حامی اصلی پروژه فدورا است. ردهت پروژه فدورا را" -" با انواع منابع، اعم از کارمندان تمام وقت پشتیبانی، زیربنای سخت‌افزار و " -"پهنای‌باند، رویداد سرمایه‌گذاری، و مشاور حقوقی حمایت می‌کند." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"پروژه فدورا همچنین از حامیان زیر به خاطر کمک‌های بی‌دریغشان سپاسگزار است:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "علاقه‌مند به حمایت از فدورا هستید؟" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"با admin@fedoraproject.orgتماس بگیرید یا توسط " -"#fedora-admin در irc.freenode.net متوقف " -"شوید." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "تصویری دانلود شده‌ی خود را صحت سنجی کنید" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM و ساختار صحت سنجی" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "چگونه تصویر خود را صحت سنجی کنم؟" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"به محض اینکه یک تصویر را دانلود کردید، امنیت و درستی آن را بررسی کنید. برای " -"صحت سنجی تصویری که دانلود کرده‌اید، در همان دایرکتوری که تصویر را دانلود " -"کرده‌اید، فایل CHECKSUM متناظرش را هم دانلود کنید." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "برای تصاویر ۶۴-بیتی" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "برای تصاویر ۳۲-بیتی" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "برای ایمیج‌های aarch64" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "برای aarch64 raw" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "برای ISO میزبان اتمی" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "برای تصاویر میزبان اتمی" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "سپس، اضافه کردن کلید(های) GPG فدورا:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"‌(های)شما می‌توانید جزئیات کلید‌ GPG را از اینجا " -"صحت سنجی کنید." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "حال تایید کنید که فایل CHECKSUM صحیح است:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "فایل CHECKSUM باید یک امضای مناسب از یکی از کلیدهای زیر داشته باشد:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "فدورا ۲۹" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "فدورا ۲۸" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "قدورا ۲۷" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "فدورا ۲۶" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "معماری‌های دیگر فدورا ۲۶ (AArch64, PPC64, PPC64le, s390 and s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"در انتها، حال که فایل CHECKSUM صحت سنجی شد، بررسی کنید که checksum مربوط به " -"تصویر یکی باشد:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"اگر خروجی بیانگر این بود که فایل صحیح (معتبر) است، آنگاه می‌توان از آن " -"استفاده کرد!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "چگونه تصویری را که در سیستم‌عامل دیگری دانلود کرده ام، صحت سنجی کنم؟" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "این دستورالعمل‌ها را برای صحت سنجی ایمیج‌تان مطالعه کنید." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"فدورا اتمی را دریافت کنید: بهترین بستر برای پشته‌ی برنامه‌های قابل حمل شما." - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "دانلود و راه‌اندازی یک ابر عمومی" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "میزبان اتمی" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "بروزرسانی‌های OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "واسط خط فرمان اتمی" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"با استفاده از یک ابزار خط فرمان راحت و مناسب، کانتینر‌های داکر، کانتینر‌های " -"سیستم، برنامه‌های اتمی و غیره را مدیریت کنید." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "بهینه شده برای Kubernetes و OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "آماده‌اید تا فدورا اتمی را امتحان کنید؟" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "دانلود میزبان اتمی فدورا" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "سپاس بابت دانلود فدورا!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"دانلود شما باید طی چند ثانیه شروع شود، اگر این اتفاق نیفتاد، بر روی پیوند " -"زیر کلیک کنید:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "دانلود خود را صحت سنجی کنید!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"به محض اینکه یک تصویر را دانلود کردید، امنیت و درستی آن را بررسی کنید. برای " -"صحت سنجی تصویری که دانلود کرده‌اید، در همان دایرکتوری که تصویر را دانلود " -"کرده‌اید، فایل CHECKSUM متناظرش را هم دانلود کنید. سپس این دستورالعمل‌ها را دنبال کنید." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "صحت سنجی!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "دانلود فدورا اتمی" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "دانلود میزبان اتمی فدورای %(rel)s" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "میزبان اتمی هر دو هفته یا بیشتر ساخته می‌شود." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"اینها آخرین ایمیج‌های رسمی میزبان فدورا اتمی هستند، %(atomic_age)s روز " -"گذشته تولید شده است." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "تصاویر میزبان اتمی" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "قالب GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "بستن" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "منطقه" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "اجرا" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "قالب استاندارد(" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "قالب استاندارد" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "تصویر VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "بارگیری" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "تصاویر qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "تصاویر خام" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "دیگر دانلودها" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "تصویر ISO میزبان اتمی (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "یک پیش‌-انتشار را امتحان کنید" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "در حال کار بر روی انتشار بعدی‌مان هستیم." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Help us get F%(rel)s ready!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Download F%(rel)s %(state)s images" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "چطور نسخه‌های پیش-نمایش را آزمایش کنیم" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "منابع" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"پروژه " -"اتمی: شروع" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "مستندات شروع توسط پروژه اتمی / میزبان اتمی." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"پروژه" -" اتمی: لیست پست الکترونیک" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "پروژه تمی: چت IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"به کانال پروژه اتمی #atomic در " -"irc.freenode.org ملحق شوید." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "صحت سنجی" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "تصویرتان را صحت سنجی کنید" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Download Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"توصیه می‌شود تمامی مسایل و مشکلات از طریق Red Hat " -"Bugzilla گزارش شود. پروژه فدورا هیچ تضمینی اعم از مناسب بودن یا " -"غیرکاربردی بودن آن نمی‌دهد." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "پروژه‌ فدورا - صفحه‌ی مورد نظر یافت نشد" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "۴۰۴: صفحه یافت نشد" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"معذرت می‌خواهیم، ولی پرونده یا صفحه‌ای را که درخواست کرده‌اید را نمی‌توان " -"یافت." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "ایده‌های عیب‌یابی" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"اگر بطور دستی آدرس URL را وارد کرده‌اید، آن‌را مجدد بررسی کنید. آیا شما " -"آن‌را درست کپی کرده‌اید؟" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"پیوند خراب؟ با the webmaster تماس بگیرید و پیوندی را که " -"در اینجا شکسته دیدید را توضیح دهد." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"ممکن است صفحه یا پرونده منتقل شده باشد. سایت اصلی " -"را بررسی کنید یا در ویکی یمان جستجو کنید." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "ببینید که چطور فدورا از شما مراقبت می‌کند." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "پرسش‌های متداول را برای بیشتر دانستن بخوانید" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "کلیدهایی که تاکنون استفاده شده‌اند" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "اصلی" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "ثانویه" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "فدورا <= ۹" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "کلید GPG فدورا" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"بسته های موجود در رسانه نصب با این کلید امضا شده اند. مخازن dnf مربوط " -"عبارتند از fedora و fedora-updates برای " -"فدورا ۷ تا ۹، و core و core-updates برای " -"فدورا کور (ورژن ۶ و قبل‌تر). برای اطلاعات بیشتر در مورد دلیل منسوخ شدن این " -"کلید http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html را ببینید." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "تست فدورا" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"اگر شما در آزمایش بسته‌ها شرکت می‌کنید این کلیدی است که برای تایید بسته‌های " -"آزمایشی استفاده خواهید کرد. این کلید بسته هایی که در مخزن fedora-" -"testingقرار دارند را امضا می کند. برای اطلاعات بیشتر در مورد دلیل " -"منسوخ شدن این کلید http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html را ببینید." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "فدورا ۹-8" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "فدورا ۹-8 آزمایشی" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "فدورا 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "فدورا 10 آزمایشی" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "فدورا 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "فدورا 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "فدورا ۱۳" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "فدورا ۱۴" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "فدورا ۱۵" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "فدورا 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "فدورا 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "فدورا 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "فدورا 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "فدورا ۲۴" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "فدورا ۲۵" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "چگونه پروژه‌ی فدورا از کلیدهای GPG برای امضای بسته‌ها استفاده می‌کند؟" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "درحال وارد کردن کلیدها" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"شما همیشه میتوانید یک کلید را بطور دستی با دستور زیر به بانک اطلاعاتی RPM " -"وارد کنید:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "برای اطلاعات بیشتر به دستورالعمل rpm رجوع کنید." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"اگر شما می خواهید تایید کنید که کلیدهای نصب شده بر روی سیستم شما با کلید های" -" موجود در اینجا یکسان می باشد, شما می توانید از GnuPG برای کنترل اثر انگشت " -"کلید همسان استفاده کنید. مثلا:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "این همان ایستگاه‌کاری گنو/لینوکسی‌ای است که منتظرش بودید." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"ایستگاه‌کار فدورا یک سیستم‌عامل قدرتمند، کاربر پسند و قابل اعتماد برای " -"لپ‌تاپ و میز‌کار شماست، که طیف وسیعی از توسعه‌دهنده‌ها، از دانشجویان و " -"افرادی که تفریحی و تفننی با رایانه کار می‌کنند تا حرفه‌ای‌ها و شرکت‌های " -"بزرگ را پوشش می‌دهد." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "ابزارهای کارایی JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "واسط کاربری شیک" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"در محیط میز‌کار گنوم ۳ روی کد خود تمرکز کنید. گنوم با توجه به بازخورد " -"توسعه‌دهنده‌ها ساخته شده و عوامل حواس پرت‌کن را به حداقل رسانده است، " -"بنابراین شما می‌توانید روی چیز‌های مهم تمرکز کنید." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "جعبه‌ابزار متن‌باز کامل" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "گنوم باکس و سایر ابزار‌های virt " - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "پشتیبانی داخلی از داکر" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "آماده‌اید تا ایستگاه‌کار فدورا را امتحان کنید؟" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "بارگیری ایستگاه‌کار فدورا" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "بارگیری نسخه‌ی %(rel)s ایستگاه‌کار فدورا" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" -"%s مگابایت نگارنده‌ی رسانه‌ی فدورا برای سیستم عامل مک 10" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-بیتی %s گیگابایت ISO برای لینوکس." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"فقط برای نصب جدید به بارگیری نیاز دارید. برای ارتقا، این " -"دستورالعمل‌ها را دنبال کنید." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s مگابایت نگارنده‌ی رسانه‌ی فدورا برای ویندوز" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "بارگیری نگارنده‌ی رسانه‌ی فدورا برای سیستم عاملتان." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "دستورالعمل نیاز دارید؟ یا یک نسخه‌ی متفاوت؟" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "اجرای ایستگاه‌کار فدورا" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "برای اجرای ایستگاه‌کار فدورا شما نیاز دارید تا:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "نگارنده‌ی رسانه‌ی فدورا ( بارگیری بالاست)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "یک فلش درایو یواس‌بی با حداقل %sگیگابایت فضای آزاد" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"فدورا نسخه‌ی ایستگاه کاری از طریق نگارنده‌ی رسانه فدورا ارایه می‌شود. این " -"برنامه را برای بستر پشتیبانی شده بارگیری کنید و " -"پیشنهادات را برای تولید نسخه‌ی زنده‌ی( ببینید ' \"زنده\" یعنی چه؟' در سمت " -"راست) فدورا ایستگاه کاری بر روی فلش درایو یواس‌بی را دنبال کنید. سپس ممکن " -"است بخواهید نسخه‌ی زنده‌ی فدورا ایستگاه کاری از روی فلش درایو یواس‌بی‌تان را" -" اجرا کنید." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"اختیاری، ممکن است بخواهید فدورا نسخه‌ی ایستگاه کاری را در یک لپ‌تاپ یا " -"دسکتاپ کامپیوتر با حداقل پردازنده 1 گیگاهرتز، رم 1 گیگابایت، و فضای آزاد 10 " -"گیگابایت نصب کنید. برای این کار، نسخه‌ی زنده‌ی فدورا ایستگاه کاری را از فلش " -"درایو یواس‌بیِ روی کامپیوتری که می‌خواهید آن را نصب کنید اجرا کنید، برنامه " -"نگارنده‌ی رسانه‌ی فدورا را اجرا کنید، و پیشنهادات نصب کامل را از روی صفحه " -"دنبال کنید." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "بسترهای پشتیبانی شده" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "نگارنده‌ی رسانه فدورا از بسترهای زیر پشتیبانی می‌کند:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "سیستم عامل مک 10" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "ویندوز" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "لینوکس" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"ما بطور اتوماتیک تشخیص دادیم که شما در حال اجرای سیستم عامل مک " -"10 هستید و آن ورژن آنرا برای بارگیری پیشنهاد می‌کنیم. اگر ما " -"سیستم عامل‌تان را اشتباه تشخیص داده‌ایم یا اینکه اگر شما مایل به بارگیری یک " -"نسخه‌ی دیگر هستید، لطفا بر روی \"نمایش تمامی بسترهای بارگیری\" در دکمه زیر " -"کلیک کنید." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"ما بطور اتوماتیک تشخیص دادیم که شما در حال اجرای لینوکس " -"هستید و ورژن آن را برای بارگیری پیشنهاد می‌کنیم. اگر ما سیستم عامل‌تان را " -"اشتباه تشخیص داده‌ایم یا اینکه اگر شما مایل به بارگیری یک نسخه‌ی دیگر هستید،" -" لطفا بر روی \"نمایش تمامی بسترهای بارگیری\" در دکمه زیر کلیک کنید." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"ما بطور اتوماتیک تشخیص دادیم که شما در حال اجرای ویندوز " -"هستید و آن ورژن آنرا برای بارگیری پیشنهاد می‌کنیم. اگر ما سیستم عامل‌تان را" -" اشتباه تشخیص داده‌ایم یا اینکه اگر شما مایل به بارگیری یک نسخه‌ی دیگر " -"هستید، لطفا بر روی \"نمایش تمامی بسترهای بارگیری\" در دکمه زیر کلیک کنید." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "نمایش تمامی بسترهای بارگیری" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "از طریق dnf برای فدورا موجود است" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "جزییات بیشتر" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "چگونه از ISO استفاده کنیم؟" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "صحت سنجی این تصویر" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-بیتی %sگیگابایتی تصویر زنده‌ی" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-بیتی %sگیگابایتی تصویر زنده‌ی" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-بیتی %sمگابایتی تصویر" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "ایستگاه کاری اتمی را امتحان کنید." - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"اتمی یک تصویر سیستم عامل تغییر ناپذیر و بروزرسانی از طریق OSTree را فراهم " -"می‌کند." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-بیت %sگیگابایتی تصویر اتمی" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "بیشتر بدانید" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "اطلاعیه‌های منتشر شده" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "اطلاعیه‌های انتشار یافته در مجله‌ی فدورا را کامل بخوانید." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" -"یادداشت‌های انتشار یافته" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"درباره‌ی تغییرات آخرین نسخه فدورا همانند حداقل‌های سیستم مورد نیاز و پیشنهاد" -" شده برای اجرای فدورا بیشتر بدانید." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "راهنمای نصب" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"پیشنهاد می‌کنیم این را قبل از نصب بر روی سیستم‌تان بخوانید، از آنجایی که " -"پاسخ بسیاری از پرسش‌های متداول را دارا می‌باشد." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "باگ‌های معمول" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "منظور از \"لایو\" چیست؟" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"وقتی آماده بودید، می‌توانید فدورا را بر روی هارد دیسک‌تان از داخل این نسخه‌ی" -" \"لایو\" فدورا ایستگاه کاری نصب کنید." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "آزمایشگاه فدورا" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "دانلود فدورا ایستگاه کاری. %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "دانلود فدورا %(rel)s %(state)s ایستگاه کاری" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "ارتقا از طریق DNF اگر شما در حال حاضر در فدورا هستید." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"این پیش-انتشار نرم‌افزار است و توسط گروه کاری " -"ایستگاه کاریپشتیبانی می‌شود. لطفا پرسش‌هایتان را به لیست پست الکترونیک یا %(team_irc)s در فری‌نود " -"بفرستید." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "اجرای نسخه‌های پیش-انتشار فدورا ایستگاه کاری" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "برای اجرای نسخه‌های پیش-انتشار فدورا ایستگاه کاری، لازم خواهید داشت:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "رسانه رایتر فدورا (دانلود در زیر موجود است)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"ایمیج ایزو لایو نسخه‌ی پیش-انتشار فدورا اگر میخواهید اجرا" -" کنید" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"اخطار: این عملیات تمامی اطلاعات بر روی رسانه‌ی یواس‌بی‌تان را از بین می‌برد." -" قبل از انجام این کار از تهیه نسخه‌ی پشتیبان هر فایل مهمی که بر روی رسانه " -"یواس‌بی‌تان است اطمینان حاصل کنید." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "برنامه رایتر رسانه فدورای زیر را دانلود کنید." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "ایمیج ایزوی دلخواه را دانلود کنید." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"برنامه‌ی رایتر رسانه‌ی فدورا را باز کنید. ممکن است لازم باشد برای دسترسی‌های" -" مجاز برنامه گذرواژه‌ای تعیین کنید" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "\"سیستم عامل سفارشی...\" را از لیست انتخاب کنید" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "در صفحه‌ی سیستم عامل سفارشی، دکمه \"انتخاب ایزو لایو\" را انتخاب کنید." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"در پنجره‌ی انتخاب فایل، محل را تعیین و ایمیج ایزو دانلود شده‌تان را انتخاب " -"کنید." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"یو اس بی را در کامپیوتر قرار دهید. اگر قبلا از یو اس بی‌تان برای نسخه لایو " -"استفاده کرده‌اید، ممکن است لازم باشد به تنظیمات کارخانه بازگردانید. اگر در " -"این زمینه نیاز باشد برنامه از شما درخواست خواهد کرد." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"برای رایت ایمیج \"ساختن یو اس بی لایو\" را انتخاب کنید. تا زمان پایان پردازش" -" صبر کنید سپس رسانه را جدا و برنامه را ببندید." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "صحت سنجی 64-بیت!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "صحت سنجی 32-بیت!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"چطور نسخه‌های پیش-انتشار را آزمایش کنیم" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"ویکی فدورا راهنمایی می‌کند چطور با آزمایش نسخه‌های پیش-انتشار فدورا را کمک " -"کنید." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "فدورا %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "معماری" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "نزدیکترین محل را انتخاب کنید" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-بیت (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-بیت (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "راه‌اندازی کن!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "مقررات صادراتی" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "مقررات صادراتی را کامل بخوانید" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "با کیک کردن و دانلود کردن فدورا، با شرایط و ضوابط زیر موافقید." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "بیشتر بخوانید>" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "درباره" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "درباره فدورا" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "اسپانسر‌ها" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "مجله فدورا" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "حقوق" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "دریافت فدورا ایستگاه کاری" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "دریافت فدورا سرور" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "دریافت فدورا اتمی" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "فدورا ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "دانلودهای جایگزین" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "پشتیبانی" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "دریافت راهنمایی" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "از فدورا بپرسید" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "باگ‌های معمول" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "پرتال توسعه دهندگان فدورا" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "راهنمای نصب" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "پیوستن" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "پیوستن به فدورا" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "سیاره فدورا" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "گروه‌های خاص فدورا" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "سیستم کاربری فدورا" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "جامعه فدورا" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "فدورا توسط ردهت پشتیبانی می‌شود." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "« در مورد رابطه‌ی بین ردهت و فدورا بیشتر بدانید " - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s ردهت، Inc. و دیگران." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"لطفا هر نظر یا تصحیحی به وب‌سایت " -"گروه ارسال کنید." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "تغییر زبان" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "قبول" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -" بیشتر از این است." - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "قابل اتکا، قدرتمند. هرکدام حاضر است." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"آخرین فناوری. با بنیانی پایدار. با همدیگر، برای برنامه‌ها و سرویس‌هایتان." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "مستندات و دیگر منابع" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"قبل از نصب فدورا، ممکن است بخواهید از حداقل سیستم مورد نیاز برای فدورا " -"اطمینان حاصل کنید. مشورت با یادداشت‌های آنلاین" -" منتشر شدهبرای دیدن حداقل سیستم مورد نیاز و توصیه شده." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"همچنین یکراهنمای کامل نصبموجود است. توصیه " -"می‌کنیم آن را قبل از نصب بر روی سیستمتان بخوانید، از آنجایی که آن پاسخ " -"بسیاری از پرسش‌های متداول را داده است." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "دیگر راه‌های بدست آوردن رسانه" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"ممکن است بخواهید نصاب و راه‌اندازبرای فدورا از فروشندگان " -"آنلاین یا یک فروشنده‌ی محلی در محلتان خریداری کنید." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -" نمی‌توانید هزینه‌ی تهیه‌ی نصاب و راه‌انداز رسانه را بدهید؟ از نصاب و " -"راه‌انداز رسانه‌ی فدورا درخواست کنید برنامه‌ی رایگان رسانه " -"فدورا." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "کد اطلاعات GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "کد شناسه" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "اثرانگشت" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "شناسه اختصاصی و منحصر به فرد" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "آن را بگیر از:" diff --git a/getfedora.org/po/fi.po b/getfedora.org/po/fi.po deleted file mode 100644 index 4fb9df0..0000000 --- a/getfedora.org/po/fi.po +++ /dev/null @@ -1,2748 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Juhani Numminen , 2014 -# Toni Willberg , 2015. #zanata -# Jiri Grönroos , 2017. #zanata -# Toni Rantala , 2017. #zanata -# Ville Skyttä , 2017. #zanata -# axu , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-01-18 06:52-0500\n" -"Last-Translator: axu \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" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedoran käytössäännöstö" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedoran käytössäännöstö" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Käyttäydy yhteisön jäsenenä, seuraa käytössäännöstöä." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Käytössäännöstö" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora-yhteisö koostuu ammattilaisista ja vapaaehtoisista kaikkialta " -"maailmasta, jotka työskentelevät jakelun jokaisen osa-alueen parissa aina " -"koodauksesta markkinointiin. Monimuotoisuus on yksi suurimmista " -"voimavaroistamme, mutta se voi myös johtaa kommunikointi vaikeuksiin ja " -"tyytymättömyyteen. Tämän vuoksi meillä on muutama perussääntö joita pyydämme" -" ihmisiä noudattamaan kun he käyttävät projektin resursseja." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Tämä ei ole kaikenkattava lista asioista joita et saa tehdä. Ota se " -"pikemminkin neuvona kuten se on tarkoitettu: ohjenuorana helpottamassa meitä" -" olemaan ystävällisiä toisillemme." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Ole huomaavainen. Tekemiäsi tuotoksia käyttävät myös muut ihmiset ja sinä " -"vuorostasi käytät muiden tuotoksia. Jokainen päätös jonka teet vaikuttaa " -"käyttäjiin ja kollegoihisi ja sinun tulisi ottaa nämä seuraukset huomioon " -"tehdessäsi päätöksiä." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Ole kunnioittava. Kaikki meistä eivät aina ole samaa mieltä, mutta " -"erimielisyydet eivät ole tekosyy huonolle käytökselle ja huonoille tavoille." -" Me kaikki saatamme kokea turhautumisen tunteita silloin tällöin, mutta emme" -" voi antaa turhautumisen johtaa henkilökohtaiseen hyökkäykseen. On tärkeää " -"muistaa että yhteisössä jossa ihmiset tuntevat olonsa epämukavaksi tai " -"uhatuksi ei ole tuottelias. Fedora-yhteisön jäsenien tulee olla " -"kunnioittavia toisiaan, Fedora-yhteisön ulkopuolisia henkilöitä ja Fedoran " -"käyttäjiä kohtaan. " - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Kun olemme eri mieltä, yritämme ymmärtää miksi. Erimielisyyksiä - niin " -"sosiaalisia kuin teknisiäkin - syntyy koko ajan, eikä Fedora ole poikkeus. " -"On tärkeää että ratkomme erimielisyydet ja eriävät näkemykset rakentavasti." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Muista että olemme kaikki erilaisia. Fedoran voima tulee monipuolisesta " -"yhteisöstä, ihmisiltä joilla on erilaiset taustat. Eri ihmisillä on " -"erilainen näkulma ongelmiin. Vaikka et ymmärtäisikään toisen näkökulmaa se " -"ei tarkoita, että hän olisi väärässä. Älä unohda että virheiden teko on " -"inhimillistä ja muiden syyttäminen ei johda mihinkään, tarjoa mieluummin " -"apua ongelmien ratkontaan ja auta oppimaan virheistä." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Hanki Fedora: lataa meidän Linux-pohjainen käyttöjärjestelmämme " -"kehittäjille, työpöytäkäyttöön, containereille ja muuhun" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Valitse vapaus. Valitse Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Vähemmän pystytettävää, enemmän innovaatiota. Valitse tarpeitasi vastaava
Fedora-julkaisu ja ryhdy tuotteliaaksi." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s on julkaistu! Testaa sitä " -"latausosiossa." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s on julkaistu! Hanki se nyt." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Lataa nyt" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation on viimeistelty ja helppokäyttöinen käyttöjärjestelmä " -"sekä pöytäkoneille että kannettaville." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Lataa nyt" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server on tehokas ja joustava käyttöjärjestelmä, joka sisältää " -"parhaat ja viimeisimmät datakeskusten teknologiat. Saat hallintaasi koko " -"infrastuktuurisi ja kaikki palvelusi." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic tarjoaa parhaan alustan Linux-Docker-Kubernetes (LDK) " -"-sovelluspinolle." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedoraa voi aina käyttää, muokata ja levittää vapaasti. Sitä kehittävät ja " -"käyttävät eri puolilla maailmaa olevat ihmiset, jotka työskentelevät yhdessä" -" yhteisönä; Fedora-projektina." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Haluatko lisää Fedora-valinnanvaraa?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora-yhteisö julkaisee myös ARM-levykuvia, vaihtoehtoisia \"live spinejä\" ja muita Fedoran " -"mukaelmia eri käyttötarkoituksia varten. Selaa eri vaihtoehtoja Fedora Spins -sivulla tai Fedora Labs -sivulla." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Ole yhteydessä ja informoitu." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Haluatko mukaan? Haluatko " -"tietää mitä yhteisössä tapahtuu? " -"Lue viimeisimmät uutiset Fedora " -"Magazinesta." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Lue ohjeet." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Lue uusimman julkaisun yksityiskohtaiset tiedot julkaisumuistiosta. " -"Lisätietoja Fedoran käytöstä ja yksityiskohdista, kuten " -"järjestelmävaatimuksista, on saatavilla virallisessa " -"dokumentaatiossa." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Pyydä apua." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Tarvitsetko apua Fedoran kanssa? Tutustu Ask Fedora " -"-palveluun – löydät muiden käyttäjien kysymyksiä sekä vastauksia ja voit " -"myös esittää oman kysymyksesi." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedoran sponsorit" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Fedora-projekti kiittää seuraavia sponsoreita..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Pääsponsori" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat on Fedora-projektin pääsponsori. Red Hat tarjoaa " -"projektille useita resursseja, mukaan lukien työntekijöitä, palvelimia, " -"verkkoyhteydet, rahoitusta tapahtumiin ja lakineuvontaa." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Fedora-projekti kiittää myös seuraavia sponsoreita merkittävästä tuesta:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Oletko kiinnostunut Fedoran sponsoroinnista?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Ota yhteyttä admin@fedoraproject.org tai " -"vieraile #fedora-admin -kanavalla " -"irc.freenode.net -verkossa." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Vahvista ladattu tiedosto" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM ja Vahvistusohjeet" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Miten tarkistan asennustiedoston eheyden?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Kun olet ladannut tiedoston on sen eheys hyvä vahvistaa tietoturvan vuoksi. " -"Aloita lataamalla vastaava CHECKSUM -tiedosto samasta hakemistosta." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "64-bittiset tiedostot" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "32-bittiset tiedostot" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Atomic Host ISO:lle" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Atomic Host -levykuville" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Seuraavaksi, tuo Fedoran GPG-avain tai -avaimet:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "Voit tarkistaa GPG-avainten tiedot täältä." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Tarkista nyt, että CHECKSUM-tiedosto on luotettava:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM-tiedosto pitäisi olla allekirjoitettu jollakin seuraavista " -"avaimista:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 toissijaiset arkkitehtuurit (AArch64, PPC64, PPC64le, s390 and " -"s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Lopuksi tarkista että tiedoston tarkistussumma vastaa CHECKSUM -tiedostoa:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Jos tuloste ilmoittaa että tiedosto on oikea, se on valmis käytettäväksi!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Kuinka tarkistan lataamani levykuvan toisella käyttöjärjestelmällä?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "Hanki Fedora Atomic: paras alusta container-sovelluspinollesi." - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Lataa tai käynnistä julkisessa pilvestä" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Pääarkkitehti, Univan Navops" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Project Atomicin Atomic Host on kevyt ja muuttumaton alusta, joka on " -"suunniteltu vain yhtä tarkoitusta varten: suorittamaan container-" -"sovelluksia." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedoran versio Atomic Hostista käyttää samoja pakettilähteitä kuin Fedora " -"Server, ja tarjoaa viimeisimmän version Atomicista." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree päivitykset" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimoitu Kubernetesille ja OpenShiftille." - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Oletko valmis kokeilemaan Fedora Atomicia?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Kiitos kun latasit Fedoran!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Latauksesi pitäisi alkaa muutaman sekunnin kuluessa. Jos ei ala, klikkaa " -"alla olevaa linkkiä." - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Vahvista latauksesi!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Kun olet ladannut levykuvan, tarkista sen turvallisuus ja eheys. " -"Tarkistaaksesi levykun, aloita lataamalla oikea CHECKSUM tiedosto samaan " -"kansioon kuin josssa lataamasi levykuva on ja seuraa näitä ohjeita." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Lataa Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Lataa Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Hostista tulee uusi koontiversio noin joka toinen viikko." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Viimeisin kahden viikon koontiversio ei vastanut testaus kriteerejämme. " -"Levykuvat jotka ovat saatavilla ovat yli %(atomic_age)s päivää vanhoja. " -"Katso Project Atomicin blogi päivityksistä ja Atomic ohjelmistovirheistä." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Nämä ovat viimeisimmät viralliset Fedora Atomic Host levykuvat, tehty " -"%(atomic_age)s päivää sitten." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host -levykuvat" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Ole hyvä ja testaa ennen kuin käytät uutta versiota " -"tuotannossa. Jos huomaat ongelman, Atomic Host työkalut auttavat " -"palauttamaan aikaisemman version helposti - jos niin tapahtuu, auta meitä " -"kertomalla ohjelmistoviasta tai tarjoamalla korjaus." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Fedora Atomic Host levykuvat päivitetään noin kahden viikon " -"välein, toisin kuin Fedoran normaalissa kuuden kuukauden päivitys " -"tahdissa. Koska kehitys on nopeaa, vain viimeisin Fedora julkaisu on tuettu." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host -levykuvat Amazon Public Cloud EC2:lle" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI:t" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Sulje" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI:t" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Alue" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI-tunniste" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Käynnistä" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host -levykuvat Vagrantille" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Katso Vagrant-lataukset" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant-levykuvien lataukset" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Nämä ovat Vagrant Boxes levykuvia jotka otetaan käyttöön Vagrantilla." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox-levykuva" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Jos käytät Vagranttia Mac OS X:llä tai Windowsilla, tämä on todennäköisesti " -"levykuva jota haluat käyttää." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Lataa" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bit %sMB VirtualBox Base Vagrant -levykuva" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM -levykuva" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Jos käytät Vagranttia Fedoralla, haluat todennäköisesti käyttää tätä " -"levykuvaa." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bit %sMB libvirt/KVM Base Vagrant -levykuva" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Katso lataukset Vagrantin työkaluja käyttäen" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Vagrant lataukset Vagrantin työkaluja käyttäen" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Voit käyttää seuraavaa komentoa hankkiaksesi Vagrant Box levykuvat HashiCorp:n Atlaksesta." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Jos olet aikaisemmin käyttäjänyt Fedora %(rel)s Atomic Hostia Vagrantissa " -"tietokoneellasi, saat uusimman version ajamalla:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Lisätietoa Vagrantin käyttämisestä Fedora Workstationilla, katso wiki sivumme." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host -levykuvat pilviympäristöihin." - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2-levykuva" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Qcow2 levykuva" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raaka levykuva" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Tämä on Fedora %(rel)s Atomic Hostin pakattu raaka levykuva. Jos et ole " -"varma mitä käyttää, kokeile tätä." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB xz-pakattu raaka levykuva" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Muut lataukset" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host -ISO-levykuva(%s Mt)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Kokeile esijulkaisua" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Työstämme seuraavaa julkaisua." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Auta meitä saamaan F%(rel)s valmiiksi!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Lataa F%(rel)s %(state)s levykuvia" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Kuinka testata esijulkaisuja" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Resurssit" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Aloitus" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Dokumentaatio Project Atomicin / Atomic Hostin käytön aloittamiseksi." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Postituslista" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "Liity postituslistalle atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC Chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Liity Project Atomicin kanavalle #atomic " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Vahvista" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Vahvista levykuva" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Lataa Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Kaikki ongelmat ja ohjelmistovirheet tulee raportoida Red " -"Hat Bugzillan kautta. Fedora Project anna takeita sen soveltuvuudesta " -"tai hyödyllisyydestä." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMI:t" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Tämä on Fedora %(rel)s %(state)s Cloud Atomic Host pakatussa raa'assa " -"levykuva muodossa. Jos et ole varma mitä käyttää, käytä tätä." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora-projekti - Sivua ei löydy" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Sivua ei löydy" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Pyydettyä tiedostoa tai sivua ei löytynyt." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ongelmanratkaisu ideoita" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Tarkista osoite, jos syötit sen manuaalisesti. Kopioitko sen oikein?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Toiko virheellinen linkki tänne? Ota yhteyttä webmasteriin ja kerro, mikä linkki johti tänne." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Sivu tai tiedosto on saatettu siirtää. Katso pääsivumme tai etsi wikistämme." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Pakettien allekirjoitus avaimet" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Tämä sivu listaa julkiset GPG avaimet joita käytetään pakettien " -"allekirjoitukseen Fedorassa." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Lue kuinka Fedora suojelee sinua." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora käyttää GPG paketti allekirjoitusta varmistaakseen ettei pakettien " -"eheyttä ole murrettu." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Lue UKK tietääksesi lisää »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Tällä hetkellä käytössä olevat avaimet" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Ensisijainen" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Toissijainen" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Etsitkö vanhentuneita avaimia?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Vanhentuneet pakettien allekirjoitusavaimet" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Tällä sivulla on lueteltu julkiset GPG-avaimet, joita ei enää käytetä " -"Fedoran pakettien allekirjoittamiseen." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Vanhentuneet avaimet ja avaimet, joita ei käytetä" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedoran GPG-avain" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Asennusmedioiden paketit ovat allekirjoitettu tällä avaimella. " -"Asiaankuuluvat dnf pakettilähteet ovat fedora, fedora-updates Fedora 7-9 versioille ja core and " -"core-updates Fedora Core (Versio 6 ja aikaisemmat). Katso " -"http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html osoitteesta miksi tämä avain on " -"vanhentunut." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Jos haluat osallistua pakettien testaamiseen, käytä tätä avainta " -"tarkistaaksesi testattavat paketit. Tämä avain allekirjoittaa paketit jotka " -"ovat fedora-testing pakettilähteessä. Katso syy http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html osoitteesta miksi tämä avain on " -"vanhentunut." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8–9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8–9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Jos käytät Fedora Extrasia Fedora Core 6 kanssa, käytä tätä pakettia " -"extras pakettilähteestä. Tätä avainta ei enää käytetä kun " -"Fedora Core 6 ja Extras saavuttavat EOL (End Of Life, 7. Joulukuuta 2007). " -"Tämä avain ei sisälly fedora-release pakettiin Fedora 7:ssa" -" tai myöhemmissä julkaisuissa." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Tätä avainta käytettiin Fedora Legacy projektin julkaisemiin paketteihin " -"julkaisuille jotka saavuttivat virallisen EOL:n (End-Of-Life). Fedora Legacy" -" projekti ei ole enää olemassa, joten tätä avainta ei enää käytetä " -"allekirjoittamaan pakettaja. Tämä avain ei sisälly fedora-" -"release pakettiin Fedora 7:ssa eikä myöhemmissä julkaisuissa." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Pakettien allekirjoitus UKK" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Lue kuinka Fedora käyttää GPG:tä pakettien allekirjoituksessa varmistaakseen" -" turvallisuutesi" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"Kuinka Fedora-projekti käyttää GPG-avaimia pakettien allekirjoittamiseen?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Jokainen vakaa RPM-paketti, jonka Fedora Project julkaisee, on " -"allekirjoitettu GPG-allekirjoituksella. Oletuksena DNF ja graafiset " -"päivitystyökalut varmistavat nämä allekirjoitukset eivätkä suostu asentamaan" -" paketteja joita ei ole allekirjoitettu tai joilla on virheellinen " -"allekirjoitus. Sinun tulisi aina varmistaa paketin allekirjoitus ennen kuin " -"asennat sen. Nämä pakettien allekirjoitukset varmistavat, että asentamasi " -"ohjelman on tuottanut Fedora Project eikä sitä ole muokattu (virheellisesti " -"tai haitallisesti) minkään mirrorin tai verkkosivun toimesta joka pakettia " -"tarjoaa." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Paketit jotka voi ladata Koji koontijärjestelmän kautta eivät sisällä " -"allekirjoituksia, joten niitä tulee käyttää varovaisesti. Vastaavasti, " -"tuoreimmat Rawhide paketit eivät välttämättä ole allekirjoitettuja." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Avainten tuominen" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Avaimet sisältyvät fedora-release pakettiin, jonka löydät " -"/etc/pki/rpm-gpg hakemistosta. Huomaathan että Fedora " -"Project ei kaikkia tässä hakemistossa olevia avaimia käytä -- osaa käytetään" -" allekirjoittamaan Red Hat Enterprise Linuxin paketteja tai ne eivät ole " -"enää käytössä ollenkaan. Jos Käytät Red Hat Enterprise Linux paketteja, " -"katso https://www.redhat.com/security/team/key. Fedoran " -"käyttämät avaimet ovat käytössä dnf:n pakettilähteiden asetuksissa, joten " -"sinun ei yleensä tarvitse niitä tuoda rpm-tietokantaan käsin." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Fedora-release paketin ja tämän verkkosivun lisäksi voit ladata Fedora " -"avaimet myös julkisilta avain palvelimilta, kuten keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Jotkin pakettilähteet, kuten ne joissa on vakaita- tai testauspaketteja " -"oletusasetuksilla, dnf osaa etsiä oikean avaimen säilölle " -"ja pyytää käyttäjän hyväksyntää ennen avaimen tuomista, jos avainta ei ole " -"jo tuotu rpm-tietokantaan." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Avaimen voi aina tuoda RPM:n tietokantaan manuaalisesti käyttämällä " -"seuraavaa komentoa:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Lisätietoja on rpm-manuaalissa" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Jos haluat varmistaa, että järjestelmään asennetut avaimet vastaavat tässä " -"lueteltuja avaimia, voit tarkistaa GnuGP:llä, että avaimen sormenjälki on " -"oikea. Esimerkiksi:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Hanki Fedora Server, viimeisintä teknologiaa ohjelmillesi ja palveluillesi" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Helppo ylläpito" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Hallitse järjestelmääsi helposti Cockpitin tehokkaalla, modernilla " -"käyttöliittymällä. Tarkastele järjestelmän suorituskykyä ja tilaa, ota " -"käyttöön ja hallitse container-pohjaisia palveluita." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Tietokantapalvelut" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server tuo mukanaan yritystason skaalautuvan tietokantapalvelimen " -"avoimen lähdekoodin PostgreSQL projektilta." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Täysi yritysvaatimusten mukainen toimialueratkaisu" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Oletko valmis kokeilemaan Fedora Serveriä?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Lataa Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Lataa Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB asennuslevykuva" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Fedora Server -levykuva antaa sinun luoda asennusmedian joka käynnistyy " -"asentajaan ja voit asentaa Fedora Serverin kiintolevylle." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Käyttääksesi tätä levykuvaa, tarvitset levyaseman joka voi luoda tai " -"\"polttaa\" DVD:itä, tai USB-muistitikun joka on vähintään saman kokoinen " -"kuin levykuva." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall-levykuva:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit %sMt levykuva" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Lataa F%(rel)s Alpha levykuva" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Lataa F%(rel)s Beta levykuva" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Hanki lisää Fedoraa" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM®-teknologia" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Kuinka teen Live levykuvasta käynnistyvän median?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Kun olet ladannut levykuvan, tee siitä käynnistävä media. Joko polta levykuva tyhjälle DVD-levylle, tai kirjoita levykuva USB-muistitikulle." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Kuinka käynnistän tietokoneeni käynnistysmedialta?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Tarkista tietokoneesi järjestelmän dokumentaatiosta kuinka voit käynnistää " -"sen ulkoiselta medialta sisäisen kiintolevyn sijasta. Prosessi voi olla " -"erilainen tietokoneesi valmistajasta ja mallista riippuen. Apua löydät näistä vinkeistä. " - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Lataa Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit %sGB Asennus levykuva" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Tämä on ohjelman esijulkaisu jota tukee Server " -"Working Group. Ole hyvä ja esitä kysymyksesi heidän postituslistallaan tai %(team_irc)s freenode-" -"verkossa." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Lue julkaisumuistio saadaksesi lisätietoa " -"muutoksista ja uusista ominaisuuksista ja yleiset ohjelmistovirheet saadaksesi tietoa " -"yleisimmistä virheistä ja kuinka välttää niitä." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Milloin Fedora %s julkaistaan?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Lue julkaisu aikataulun kaikki tärkeät virstanpylväät.." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Kun olet ladannut levykuvan, tarkista sen turvallisuus ja eheys. " -"Tarkistaaksesi levykuvan, aloita lataamalla CHECKSUM tiedosto alempaa samaan" -" hakemistoon kuin missä lataamasi levykuva on ja seuraa näitä ohjeita." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Hanki Fedora Workstation: paras käyttöjärjestelmä ohjelmistokehittäjille" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Tätä Linux-työasemaa olet odottanut." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation on luotettava, käyttäjäystävällinen ja tehokas " -"käyttöjärjestelmä kannettavallesi tai työasemallesi. Se tukee monenlaisia " -"kehittäjiä harrastelijoista ja opiskelijoista ammattilaisiin." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"\"Fedoran tarjoama valtava määrä työkaluja
auttaa minua tekemään " -"työni.
Se yksinkertaisesti toimii.\"" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM-suorituskykyinsinööri" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Kiillotettu käyttöliittymä" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Keskity koodiisi GNOME 3 -työpöytäympäristössä. GNOME on tehty kehittäjien " -"palaute ja häiriöiden minimointi mielessä, jotta voit keskittyä siihen mikä " -"on tärkeää." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Täysi avoimen lähdekoodin työkalupakki" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Lopeta turhauttava oikeiden työkalujen etsiminen. Fedoran kattavan avoimen " -"lähdekoodin ohjelmointikielten, työkalujen ja apuvälineiden kanssa kaikki on" -" vain klikkauksen tai komentorivin päässä. Fedora tarjoaa myös projektien " -"isännöintiä ja pakettilähteitä kuten COPR, jotka tuovat koodisi ja " -"koontiversiosi nopeasti yhteisön saataville." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "Gnomen Boksit ja muut virtualisointiratkaisut" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Luo virtuaalikoneita nopeasti ja helposti testataksesi koodiasi useilla eri " -"alustoilla GNOME Boxesia käyttäen. Tai kokeile voimakkaita, skriptattavia " -"virtualisointi työkaluja parempaan hallintaan." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Sisäänrakennettu Docker-tuki." - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Oletko valmis kokeilemaan Fedora Workstationia?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Lataa Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Lataa Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer Mac OS Xlle" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s Gt ISO Linuxille." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer Windowsille" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Lataa Fedora Media Writer käyttöjärjestelmällesi." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Tarvitsetko ohjeita? Tai eri version?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Fedora Workstationin käyttäminen" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Käyttääksesi Fedora Workstationia, tarvitset:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (lataus ylempänä)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "USB-muistitikun, jossa on vähintään %s Gt vapaata tilaa." - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Vaihtoehtoisesti voit asentaa Fedora Workstationin kannettavalle tai " -"pöytätietokoneelle, jossa on vähintään 1 GHz prosessori, 1GB muistia ja 10 " -"Gt vapaata tilaa. Tehdäksesi tämän, käynnistä Fedora Workstationin live-" -"versio USB-muistitikulta tietokoneella jolle haluat sen asentaa, käynnistä " -"Fedora Media Writer -ohjelma ja seuraa ruudulla olevia ohjeita." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Tuetut alustat" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer tukee seuraavia alustoja:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vaikuttaa siltä, että käyttöjärjestelmäsi on Mac OS X ja " -"tarjoamme sille sopivaa versiota ladattavaksi. Jos tunnistimme " -"käyttöjärjestelmäsi väärin tai haluaisit ladata toisen version, klikkaa " -"\"Näytä kaikkien alustojen lataukset\"." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Vaikuttaa siltä, että käyttöjärjestelmäsi on Linux ja " -"tarjoamme sille sopivaa versiota ladattavaksi. Jos tunnistimme " -"käyttöjärjestelmäsi väärin tai haluaisit ladata toisen version, klikkaa " -"\"Näytä kaikkien alustojen lataukset\"." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vaikuttaa siltä, että käyttöjärjestelmäsi on Windows ja " -"tarjoamme sille sopivaa versiota ladattavaksi. Jos tunnistimme " -"käyttöjärjestelmäsi väärin tai haluaisit ladata toisen version, klikkaa " -"\"Näytä kaikkien alustojen lataukset\"." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Näytä kaikkien alustojen lataukset" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Saatavilla DNF:n kautta Fedoralle" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Lisää tietoa" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Kuinka käyttää ISO:a?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Vahvista tämä levykuva" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit %s Gt (Live-levykuva)" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bit %s Gt (Live-levykuva)" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall-levykuvat:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit %s Mt (Live-levykuva)" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Julkaisutiedotus" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Lue koko julkaisutiedotus Fedora Magazinesta." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Julkaisumuistio" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Lue mikä on muuttunut Fedoran viime versiosta ja minimi vaatimuksista ja " -"suosituksista Fedoran käyttämiseksi." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Asennusopas" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Suosittelemme että luet tämän läpi ennen kuin asennat, sillä se vastaa " -"moniin yleisiin kysymyksiin." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" -"Yleiset ohjelmavirheet" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Loistava lähde josta etsiä apua jos törmäät ongelmiin Fedoran asennuksessa " -"tai käyttämisessä." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Mitä \"Live\" tarkoittaa?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer luo täydellisen, toimivan Fedora Workstationin jota voit" -" käyttää suoraan USB-muistitikulta. Voit käyttää Live-levykuvaa testaamiseen" -" ja leikkiä Fedoran kanssa tekemättä muutoksia kiintolevyllesi." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Kun olet valmis, voit asentaa Fedoran kiintolevyllesi suoraan Fedora " -"Workstation live veriosta." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora spinit" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Lataa Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Lataa Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Tämä on ohjelman esijulkaisu versio jota tukee Workstation Working Group. Ole hyvä ja esitä " -"kysmyksesi heidän postituslistalle tai " -"%(team_irc)s freenode-verkossa." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Fedora Workstationin esiversion käyttäminen" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Käyttääksesi Fedora Workstationin esijulkaisu versiota, tarvitset:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (lataus alapuolella)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Live ISO levykuva Fedoran esijulkaisu versiosta jota " -"voit haluta käyttää" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"VAROITUS: Tämä tuhoaa kaiken datan USB-mediallasi. Muista tehdä " -"varmuuskopiot kaikista USB-median tiedostoista ennen kuin aloitat." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Lataa Fedora Media Writer alempaa." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Lataa haluttu ISO levykuva." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Avaa Fedora Media Writer ohjelma. Voit joutua syöttämään salasanan jotta " -"ohjelma saa tarvittavat oikeudet." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Valitse \"Custom OS...\" listalta." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Custom OS sivulla, klikkaa \"Select Live ISO\" painiketta." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Tiedoston valinta ikkunassa, etsi ja valitse ISO levykuva jonka olet " -"ladannut." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Laita USB-muistitikkusi kiinni tietokoneeseen. Jos olet käyttänyt USB-" -"muistitikkua aikaisemmin luodaksesi livemedian, sinun pitää mahdollisesti " -"palauttaa se tehdasasetuksille. Ohjelma kysyy tehdäänkö tämä jos tarvetta " -"on." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Valitse \"Create Live USB\" kirjoittaaksesi livekuvan. Odota että prosessi " -"on valmis ennen kuin poistat median ja sulje ohjelma." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Kuinka testata esijulkaisuja" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Fedora wiki ohje joka auttaa testaamaan Fedoran esijulkaisu versioita." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arkkitehtuuri" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Juurisäilö" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Käynnistä AMI instanssi" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Valitse lähin alue" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Käynnistä!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Vientirajoitukset" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Lue täysimittaiset vientirajoitukset" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "Klikkaamalla ja lataamalla Fedoran, hyväksyt seuraavat käyttöehdot." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Lue lisää >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Tietoja" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Tietoja Fedorasta" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorit" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Lainopilliset asiat" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Lataa Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Lataa Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Lataa Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Vaihtoehtoiset lataukset" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Tuki" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Pyydä apua" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Kysy Fedorasta" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Yleiset ohjelmavirheet" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora-kehittäjäportaali" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Asennusopas" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Liity" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Liity Fedoraan" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Fedora-planeetta" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedoran SIG:t" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedoran tilijärjestelmä" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora-yhteisö" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedoraa sponsoroi Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Lue lisää Red Hatin ja Fedoran välisestä suhteesta »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. ja muut." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Lähetä kommentit ja korjauspyynnöt verkkosivutiimille." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Vaihda kieltä" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Tiukka kokonaisuus. Tehokas. Everycloud valmis." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Viimeisin teknologia. Vakaa pohja. Yhdessä, ohjelmiasi ja palveluitasi " -"varten." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentaatio ja muut lähteet." - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Muut tavat hankkia media" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Voit ostaa Fedoran asennusmedian verkkokaupasta tai " -"alueesi paikallisilta myyjiltä. " - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Eikö sinulla ole varaa ostaa asennusmediaa? Voit pyytää Fedoran " -"asennusmediaa Fedora Free Media Programilta." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG avain tiedot" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Avain ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Sormenjälki" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Hanki se täältä:" diff --git a/getfedora.org/po/fr.po b/getfedora.org/po/fr.po deleted file mode 100644 index 2606af9..0000000 --- a/getfedora.org/po/fr.po +++ /dev/null @@ -1,2923 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# dominique bribanick , 2014 -# Jérôme Fenal , 2014 -# Kévin Raymond , 2014 -# Jean-Baptiste Holcroft , 2015. #zanata -# Jérôme Fenal , 2015. #zanata -# Jean-Baptiste Holcroft , 2016. #zanata -# José Fournier , 2016. #zanata -# Jean-Baptiste Holcroft , 2017. #zanata -# José Fournier , 2017. #zanata -# Jean-Baptiste Holcroft , 2018. #zanata -# José Fournier , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-04 03:44-0400\n" -"Last-Translator: Jean-Baptiste Holcroft \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" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Code de bonne conduite de Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Le code de bonne conduite de Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Comportez-vous en membre de la communauté, suivez le code de bonne conduite." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Code de bonne conduite" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"La communauté Fedora est constituée d’un ensemble de professionnels et de " -"bénévoles du monde entier, travaillant sur tous les aspects de la " -"distribution depuis le codage jusqu’à sa diffusion. La diversité est l’une " -"de nos forces, mais elle peut aussi conduire à des problèmes de " -"communication et à certains malaises. À cette fin, nous avons un ensemble de" -" règles auxquelles nous demandons aux personnes d’adhérer lorsqu’elles " -"utilisent les ressources du projet." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Ce n’est pas une liste exhaustive de ce qu’il ne faut pas faire. Au " -"contraire, il faut le prendre pour ce qu’il cherche à être : un guide " -"facilitant l’entraide et la bonne communication." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Soyez prévenant. Votre travail sera utilisé par d’autres personnes, et en " -"retour vous serez dépendant du travail des autres. Chaque décision que vous " -"prendrez concernera les utilisateurs et collègues, prenez cela en " -"considération dans vos prises de décision." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Soyez respectueux. Nous ne sommes pas toujours d’accord, mais ne pas l’être " -"n’est pas une excuse pour un mauvais comportement ou de mauvaises manières. " -"Nous pouvons tous ressentir de la frustration à un moment ou à un autre, " -"mais nous ne pouvons pas permettre à cette frustration de se transformer en " -"attaque personnelle. Il faut se souvenir qu’une communauté où les gens se " -"sentent mal ou menacés n’est pas productive. Les membres de la communauté " -"Fedora doivent être respectueux quand ils échangent avec d’autres " -"contributeurs et également avec des personnes en dehors de la communauté " -"Fedora et les utilisateurs de Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Lorsque nous sommes en désaccord, nous essayons de comprendre pourquoi. Les " -"désaccords, qu’ils soient sociaux ou techniques, apparaissent tout le temps," -" et Fedora ne fait pas exception à cette règle. Il est important de résoudre" -" ces désaccords et divergences d’opinions de manière constructive." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Souvenez-vous que nous sommes tous différents. La force de Fedora vient de " -"sa communauté variée, de personnes venant de différents milieux. Des " -"personnes différentes ont des points de vue différents suivant les sujets. " -"Être incapable de comprendre le point de vue d’une personne ne signifie pas " -"qu’elle a tort. N’oubliez pas qu’il est humain de se tromper et que " -"s’accuser les uns les autres ne nous mènera nulle part, et qu’il est " -"préférable d’aider à résoudre les problèmes et d’apprendre de ses erreurs." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Obtenir Fedora : téléchargez notre système d’exploitation pour les " -"développeurs d’applications, faire fonctionner des conteneurs et plus encore" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Choisissez la liberté. Choisissez Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Moins de configuration, plus d’innovation. Choisissez une version de " -"Fedora

faite pour vos besoins et mettez-vous au travail " -"immédiatement." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s est disponible ! Obtenez-le dans " -"la partie Téléchargement pour le tester." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s est disponible ! Obtenez-le maintenant." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Télécharger maintenant" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation est un système d’exploitation bien fini et facile " -"d’utilisation pour les ordinateurs de bureau et portables, avec un ensemble" -" complet d’outils pour les développeurs et les créateurs de tous types." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Téléchargez maintenant" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server est un système d’exploitation puissant et flexible qui " -"comprend les technologies les meilleures et les plus récentes pour les " -"centres de données. Il vous donne le contrôle de toutes vos infrastructures " -"et services." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic offre la meilleure plateforme pour votre pile applicative " -"Linux-Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Tout le monde peut utiliser, modifier et distribuer Fedora librement. Il est" -" construit et utilisé par des personnes à travers le monde qui travaillent " -"ensemble au sein d’une communauté : le Projet Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Plus d’options Fedora ?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"La communauté Fedora met aussi à disposition des images pour ARM, des variantes " -"amorçables Live et d’autres variantes de Fedora adaptées à des besoins " -"particuliers. Elles sont visibles sur les pages des sites Fedora Spins ou du site Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Restez en contact et au courant." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Vous voulez vous impliquer ?" -" Découvrir les dernières nouvelles de la communauté ? Lisez les " -"dernières nouvelles dans le Fedora " -"Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Lire les documentations." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Consultez les notes de Version pour les informations détaillées sur la " -"version courante. Pour en savoir plus sur l’utilisation de Fedora ou pour " -"des détails comme les prérequis système, lisez la documentation officielle." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Obtenir de l’aide" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Vous avez besoin d’aide avec Fedora ? Visitez Ask Fedora," -" un endroit où vous pouvez lire les questions posées par d’autres " -"utilisateurs, ou y poser la votre." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponsors de Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Le Projet Fedora est fier d’avoir les organisations suivantes comme " -"sponsors..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Sponsor principal de Fedora" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. est le sponsor principal de Fedora Project." -" Red Hat propose le projet Fedora avec une grande variété de ressources, y " -"compris le soutien d’employés à plein temps, du matériel d’infrastructure et" -" de bande passante, le financement d’événements et des conseils juridiques." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Le Projet Fedora remercie également les sponsors suivants pour leur soutien " -"substantiel :" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Vous désirez sponsoriser quelque chose pour Fedora ?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contactez admin@fedoraproject.org ou venez sur " -"#fedora-admin sur irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Vérifiez votre image téléchargée" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM et instructions de vérification" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Comment puis-je vérifier mon image ?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Une fois que vous avez téléchargé une image, vérifiez son intégrité par " -"sécurité. Pour vérifier une image, commencez par télécharger le fichier " -"CHECKSUM dans le répertoire d’où vous avez téléchargé l’image." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Pour les images 64 bits" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Pour les images 32 bits" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Pour Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Pour les ISO Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Pour les images Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Pour le conteneur" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Ensuite, importez votre ou vos clés GPG Fedora :" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Vous pouvez vérifier les informations des clés GPG ici." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Maintenant, vérifiez que le fichier CHECKSUM est valide :" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Le fichier CHECKSUM devrait avoir une signature correcte depuis l’une des " -"clés suivantes :" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Architectures secondaires de Fedora 26 (AArch64, PPC64, PPC64le, s390 et " -"s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Maintenant que le fichier CHECKSUM a été vérifié, assurez-vous que la somme " -"de contrôle de l’image ISO corresponde : " - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Si la sortie vous assure que le fichier est valide, vous pouvez y " -"l’utiliser." - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Comment vérifier l’image téléchargée sur un autre système d’exploitation ?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Lisez ces instructions afin de vérifier votre image." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Télécharger Fedora Atomic : la meilleur plateforme pour votre pile " -"d’applications en conteneurs" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Déployez et faites passer à l’échelle vos applications conteneurisées avec " -"une infrastructure immuable." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Télécharger ou lancer dans un nuage public" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"« Nous avons choisi d’utiliser Fedora Atomic comme base de notre Navops " -"Launch – solution d’approvisionnement de grappes Kubernetes car nos clients " -"utilisent déjà des systèmes d’exploitation Red Hat à qui ils font confiance." -" Nous aimons l’aspect immuable de Fedora Atomic qui est parfait pour les " -"environnements conteneurisés. »" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Architecte en chef, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host du projet Atomic est une plateforme légère et non évolutive dont" -" l’unique but est d’exécuter des applications conteneurisées. " - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"La version d’Atomic Host que propose Fedora utilise les mêmes dépôts de " -"paquets que Fedora Server et procure les dernières versions d’Atomic. " - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Mises à jour d’OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Mettez votre système à jour Atomiquement à partir du dernier OStree amont. " -"Rendez vos serveurs identiques et revenez facilement en arrière si un " -"problème de mise à jour est rencontré." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Gérez les conteneurs Docker, les conteneurs système, les application Atomic " -"et plus, à l’aide d’un outil en ligne de commande adapté." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimisé pour Kubernetes et OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Vous êtes en train de construire un cluster Kubernetes ou Origin pour " -"exécuter vos applications conteneurisées ? Exécutez-le sur Fedora Atomic qui" -" vous fournit la plateforme dont vous avez besoin sur un OS plus petit et " -"allégé." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Alors ! On veut installer Fedora Atomic ?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Télécharger l’hôte Fedora Atomic" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Merci d’avoir téléchargé Fedora." - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Votre téléchargement devrait débuter dans quelques secondes. S’il ne démarre" -" pas, cliquez sur le lien ci-dessous :" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Vérifiez votre téléchargement" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Une fois que vous avez téléchargé une image, vérifiez son intégrité par " -"sécurité. Pour vérifier votre image, téléchargez le fichier CHECKSUM dans le" -" dossier où vous avez téléchargé l’image et suivez ces instructions." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Vérifiez !" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Télécharger Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Télécharger l’Atomic Host de Fedora %(rel)s" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host est compilé toutes les deux semaines environ." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"La dernière compilation bi-mensuelle ne répondait pas à nos critères de " -"tests. Les images disponibles ici datent d’il y a %(atomic_age)s jours. " -"Vérifiez le blog du projet Atomic pour des mises à jour et des informations" -" à propos des bogues bloquants." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Ce sont les dernières images d’hôte Fedora Atomic, produites il y a " -"%(atomic_age)s jours." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Images Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host est un projet de système d’exploitation de base de pointe" -" répondant au modèle Project Atomic. Il est conçu autour des conteneurs et " -"Kubernetes. Les images publiées ici sont des illustrations de ce travail sur" -" des cas particuliers. Notez que les images ont subi avec succès plusieurs " -"niveaux de tests automatiques." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Testez les nouvelles versions avant de les utiliser en " -"production. Si vous découvrez un problème, les outils de Atomic " -"Host facilitent le retour à une version antérieure – si cela arrive, aidez-" -"nous en signalant les anomalies ou en proposant des correctifs." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Les images d’hôtes Fedora Atomic sont mises à jour deux fois par " -"mois environ, par opposition au cycle semestriel principal de " -"Fedora. Parce que le développement évolue rapidement, seule la dernière " -"version majeure de Fedora est prise en charge." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Remarquez que médias pour Fedora Atomic Host différents sont sujets " -"à des niveaux de tests automatiques différents. Vous pouvez en " -"apprendre plus sur le projet Atomic sur projectatomic.io, cliquez ici pour voir " -"l’état des tests actuels." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Images d’Atomic Host pour le nuage public Amazon EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Les liens ci-dessous vous indiquent la liste des images machines Amazon " -"(AMI), pour les machines virtuelles matérielles (HVM) Atomic Host, " -"disponibles par région avec les boutons permettant de les lancer depuis " -"votre compte Amazon Web Services. Les identifiants des AMI pour utilisation " -"dans la console AWS ou les outils en ligne de commande sont aussi fournis." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Format GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"Les images machines Amazon (AMI) formatées en GP2 utilisent un stockage SSD " -"plus rapide ; utilisez ces AMI pour la vitesse, cependant vos coûts de " -"stockages seront plus élevés que la moyenne." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "HVM AMI GP2" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Fermer" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "AMI HVM GP2 de Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Région" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Démarrer" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Format standard" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Les images machines Amazon (AMI) au format standard sont plus adaptées si " -"vous avez un accès irrégulier aux données et que vous voulez maintenir au " -"plus bas le coût du stockage." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "HVM AMI standard" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr " AMI HVM standard de Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Format standard" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Images Atomic Host pour Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Des boîtes Vagrant pour Fedora Atomic Host sont disponibles pour les " -"fournisseurs Virtualboxe et Libvirt. Vous pouvez installer Fedora Atomic " -"Host dans une boîte Vagrant en téléchargeant les images depuis le site de " -"Fedora ou en utilisant les outils Vagrant pour extraire les images d'un nuage Vagrant de HashiCorp" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Voir les téléchargements Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Téléchargements des images Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Ces images sont des images de boites Vagrant à utiliser dans un déploiement" -" Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Image VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Si vous utilisez Vagrant sous MacOS X ou Windows, voici probablement l’image" -" que vous voudrez utiliser." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Téléchargement" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Image de base VirtualBox Vagrant 64 bits %s Mio" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "image libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Si vous utilisez Vagrant sur Fedora, voici l’image que vous voudrez " -"utiliser." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Image de base libvirt/KVM Vagrant 64 bits %s Mio" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Voir les téléchargements utilisant les outils Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Téléchargements utilisant les outils Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Vous pouvez utiliser les commandes suivantes pour récupérer les boites " -"Vagrant depuis l’atlas HashiCorp." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Si vous avez utilisé précédemment Fedora %(rel)s Atomic Host dans Vagrant " -"sur votre machine alors vous pouvez obtenir la dernière version en lançant :" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Pour plus d’information sur le lancement de Vagrant sur Fedora Workstation, " -"voyez notre page wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Images Atomic Host pour les environnements Cloud" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Image qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Ceci est Fedora %(rel)s Cloud Atomic Host dans une image au format Qcow2 à " -"utiliser avec OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Image Qcow2 64 bits %s Mio" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Image brute" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Ceci est Fedora %(rel)s Cloud Atomic Host dans une image brute compressée. " -"Si vous ne savez pas exactement quoi utiliser, essayez celle-ci." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Image brute 64 bits %s Mio compressée avec xz" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Autres téléchargements" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Image ISO Atomic Host (%s Mio)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Image de conteneur (%sMo)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Essayez une pré-version" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Nous travaillons sur la future version." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Aidez-nous à rendre prête F%(rel)s !" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Télécharger les images F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Comment tester les pré-versions" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ressources" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Projet " -"Atomic : pour démarrer" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" -"Documentation pour démarrer dans l’utilisation de Projet Atomic / Atomic " -"Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Projet" -" Atomic : liste de diffusion" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Rejoignez la liste de diffusion de l’amont à l’adresse atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Projet Atomic : salon IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Rejoignez le salon de discussion du projet Atomic #atomic " -"sur irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Vérifiez" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Vérifiez votre image" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Télécharger Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Ce sont les dernières images d’hôte Fedora Atomic, produites le " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ce logiciel est en pré-version et est maintenu par le Atomic Working Group. Veuillez adresser vos " -"questions à leur liste de diffusion ou " -"%(team_irc)s sur freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Les problèmes rencontrés doivent être rapportés sur le Bugzilla Red Hat. Le Projet Fedora ne donne aucune garantie " -"quant à son utilité ni à sa pertinence. " - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "AMI HVM GP2 de Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr " AMI HVM standard de Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Les boîtes Vagrant pour Fedora Atomic Host sont disponibles pour les " -"fournisseurs VirtualBox et Libvirt. Vous pouvez embarquer Fedora Atomic Host" -" dans une boîte Vagrant en téléchargeant les images depuis Fedora ou en " -"utilisant les outils Vagrant pour récupérer les images depuis l’Atlas HashiCorp." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Ceci est Fedora %(rel)s %(state)s Cloud Atomic Host dans une image formatée " -"en Qcow2 à utiliser avec OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Ceci est Fedora %(rel)s %(state)s Cloud Atomic Host dans un format d’image " -"brute compressé. Si vous ne savez pas quoi utiliser, utilisez ceci." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projet Fedora - Page introuvable" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404 : page introuvable" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Désolé, mais le fichier ou la page que vous avez demandé est introuvable." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Idées pour la résolution des problèmes" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Vérifiez à nouveau l’URL si vous l’avez saisi manuellement. L’avez-vous " -"copié correctement ?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Mauvais lien ? Contactez l’administrateur et indiquez-lui" -" le lien qui vous a amené ici." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Le fichier ou la page que vous cherchez a peut-être été modifié. Consultez " -"notre site principal ou faites une recherche sur " -"notre wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Clés de signature de paquets" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Cette page énumère les clés publiques GPG utilisées pour la signature de " -"paquets dans Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "En savoir plus sur la façon dont Fedora vous protège." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora utilise la signature de paquets par GPG afin de s’assurer que " -"l’intégrité des paquets n’a pas été compromise." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Consultez la FAQ pour en savoir plus »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Clés actuellement utilisées" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Principale" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secondaire" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "À la recherche de clefs obsolètes ?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Clés de signature de paquets obsolètes" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Cette page énumère les clés publiques GPG qui ne sont plus utilisées pour la" -" signature de paquets dans Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Clés obsolètes et inutilisées" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Clé GPG Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Les paquets sur les médias d’installation sont signés avec cette clef. Les " -"dépôts dnf significatifs sont fedora, fedora-" -"updates pour Fedora 7-9, et core et core-" -"updates pour Fedora Core (Version 6 et précédentes). Voir http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html pour les raisons de " -"l’obsolescence de cette clef." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Si vous participez aux tests des paquets, cette clé est celle que vous " -"utiliserez pour vérifier les paquets de tests. Celle-ci signe les paquets " -"qui sont dans le dépôt fedora-testing. Consultez http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html pour savoir pourquoi cette clé " -"est obsolète." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Si vous utilisez Fedora Extras avec Fedora Core 6, utilisez ce paquet depuis" -" le dépôt extras. Cette clé ne sera plus utilisée après la " -"fin de vie de Fedora Core 6 et Extras (7 décembre 2007). Cette clé n’est pas" -" incluse dans le paquet fedora-release pour Fedora 7 et les" -" versions suivantes." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Cette clé était utilisée pour les paquets fournis par le projet Fedora " -"Legacy afin de mettre à jour des versions qui avait atteint leur fin de vie " -"officielle. Le projet Fedora Legacy n’existe plus, cette clé ne sera donc " -"plus utilisée pour signer des paquets. Cette clé n’est pas incluse dans le " -"paquet fedora-release de Fedora 7 et des versions " -"suivantes." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ sur la signature de paquets" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Sachez en plus sur la façon dont Fedora utilise GPG pour signer les paquets " -"afin de s’assurer de votre sécurité." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"De quelle manière le Projet Fedora utilise les clés GPG pour signer les " -"paquets ?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Chaque paquet RPM stable qui est publié par le Projet Fedora est signé avec " -"une signature GPG. Par défaut, dnf et l’outil de mise à jour graphique " -"vérifient ces signatures et refusent d’installer le moindre paquet qui n’est" -" pas signé ou qui a une mauvaise signature. Vous devez toujours vérifier la " -"signature d’un paquet avant de l’installer. Ces signatures permettent " -"d’assurer que les paquets que vous installez sont ceux qui ont été produits " -"par le Projet Fedora et qu’ils n’ont pas été altérés (accidentellement ou " -"malicieusement) par un miroir ou un site internet qui fournit les paquets." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Les paquets qui peuvent être téléchargés depuis le système de construction " -"Koji ne contiennent pas de signature, vous devriez donc les utiliser avec " -"précaution. De la même façon, les tout derniers paquets sur Rawhide ne sont " -"pas nécessairement signés." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importation des clés" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Les clefs sont inclues dans le paquet fedora-release, vous " -"pouvez les trouver dans le répertoire /etc/pki/rpm-gpg. " -"Veuillez noter que toutes les clefs présentes dans ce dossier ne sont pas " -"forcément utilisées par le projet Fedora -- certaines sont utilisées pour " -"signer des paquets Red Hat Enterprise Linux ou ne sont plus du tout " -"utilisées. Si vous utilisez des paquets Red Hat Enterprise Linux, regardez " -"https://www.redhat.com/security/team/key. Les clefs " -"utilisées par Fedora sont activées dans la configuration du dépôt, donc vous" -" n’avez généralement pas besoin de les importer manuellement dans la base de" -" données rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"En complément du paquet fedora-release et de cette page web, vous pouvez " -"télécharger les clefs Fedora depuis un serveur de clés public tel que keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Pour certains dépôts, comme les dépôts ayant des paquets stables et de tests" -" dans leur configuration par défaut, dnf est capable de " -"trouver la clef adaptée pour le dépôt et demande confirmation à " -"l’utilisateur avant d’importer la clef si celle-ci n’est pas déjà importée " -"dans la base de données rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Vous pouvez toujours importer une clé dans la base de données RPM " -"manuellement en utilisant la commande suivante :" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Référez-vous au manuel rpm pour de plus amples " -"informations." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Si vous souhaitez vérifier que les clés installées sur votre système " -"correspondent aux clés listées ici, vous pouvez utiliser GPG pour vérifier " -"que les empreintes des clés concordent. Par exemple :" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Télécharger Fedora Server : les dernières technologies pour vos applications" -" et services" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Exécutez votre application sur OS Linux server avec la technologie open " -"source la plus récente" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Maintenant avec un contenu dans de multiples versions ayant des cycles de " -"vie indépendants — ainsi votre serveur peut évoluer à la fois rapidement et " -"lentement" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server est système d’exploitation serveur à durée de vie courte, pris" -" en charge par la communauté, qui permet à des administrateurs système " -"chevronnés, ayant l’expérience de tous les systèmes d’exploitation, " -"d’utiliser les toutes dernières technologies disponibles dans la communauté " -"open source." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Introduction de la modularité" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"La modularité apporte avec elle un nouveau dépôt Modular qui fournit des " -"versions additionnelles de logiciels sur des durées de vies indépendantes." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Choisissez la bonne version d’une application ou un pile linguistique selon " -"votre besoin, et conservez-la même si votre OS est mis à jour vers une " -"version plus récente." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Apprenez-en plus sur la modularité" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Administration facile" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Gérez votre système facilement avec l’interface moderne et puissante de " -"Cockpit. Visualisez et surveillez l’état et la performance du système, et " -"déployez et gérez des services basés sur des conteneurs." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Services de base de données" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server apporte avec lui un serveur de base de données professionnel, " -"pouvant monter en charge et alimenté par le projet open-source PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Une solution complète de Domaines d’entreprise" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Mettez votre réseau Linux à niveau avec la gestion avancée d’identité, DNS, " -"les services certificats, Windws (TM), l’intégration de domaine dans tout " -"votre environnement avec FreeIPA, le contrôleur de domaines open source." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"« Pour DevConv US, j'avais besoin d’un système pour gérer la conférence. " -"J’ai découvert regcfp, par Patrick Uiterwijk, qui semblait répondre à mon " -"besoin. Cependant, il ne fonctionnait pas dans nodejs 8 dans F27. Avec le " -"lancement de F28 Server, en choisissant le flux ''nodejs:6'', ça a " -"fonctionné comme un charme ! »" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "Le co-président de DevConf US Conference" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Prêt à essayer Fedora Server ?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Télécharger Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Télécharger Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Image d’installation 64 bits %s Gio" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"L’image d’installation Fedora Server vous permet de fabriquer un media " -"d’installation qui démarre sur l’installateur afin d’installer directement " -"Fedora Serveur sur votre disque dur" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Pour utiliser cette image, vous devez posséder un périphérique pouvant créer" -" ou graver des DVD, ou un périphérique flash USB au moins aussi grand que " -"l’image." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Si vous souhaitez découvrir les nouvelles fonctionnalités de modularité de " -"Fedora Server, veuillez visiter la section Using " -"Modules de la documentation sur la modularité. Si vous souhaitez plus " -"d’informations sur la modularité en général, veuillez parcourir le si web sur Pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Image d’installation réseau" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "image 64 bits %s Mio" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Télécharger les images F%(rel)s Alpha" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Télécharger les images F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Obtenir plus de Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Technologie ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Comment transformer l’image Live en media amorçable ?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Après que vous avez téléchargé l’image, vous devez en faire un média " -"amorçable, soit en écrivant l’image sur un DVD vierge, " -"soit en écrivant l’image sur une clef USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Comment démarrer depuis le média ?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Vérifiez la documentation de votre système pour obtenir la procédure " -"d’amorçage à partir d’un média autre que le disque dur embarqué. Le " -"processus peut varier selon le constructeur et le modèle de votre " -"ordinateur. Ces quelques astuces pourraient vous être " -"utiles." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Télécharger Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Télécharger Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Image d’installation 64 bits %s Gio" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ce logiciel est en pré-version et est maintenu par le Server Working Group. Veuillez adresser vos " -"questions à leur liste de diffusion ou " -"%(team_irc)s sur freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Pour plus d’informations sur ses modifications et nouvelles fonctionnalités " -"veuillez consulter les notes de version et " -"la page recensant les anomalies courantes" -" et la manière de les résoudre." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Quand est-ce que Fedora %s sera disponible ?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Retrouvez les dates clefs de l’agenda de parution..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Une fois que vous avez téléchargé une image, vérifiez sa sécurité et son " -"intégrité. Pour la vérifier, commencez par télécharger le bon fichier de " -"CHECKSUM dans le répertoire où vous avez téléchargé l’image et suivez ces instructions." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Télécharger Fedora Workstation : le meilleur système d’exploitation de " -"bureau pour les développeurs logiciel" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Voici la station de travail Linux que vous attendiez." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation est un système d’exploitation fiable, facile d’accès et " -"puissant pour votre ordinateur portable ou de bureau. Il apporte son soutien" -" à un grand nombre de développeurs, qu’ils soient amateurs, étudiants, ou " -"professionnels." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"« La pléthore d’outils fournis par
Fedora me permet de faire mon " -"travail.
Ça marche, tout simplement. »" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Ingénieur performance JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Interface utilisateur lissée" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Concentrez-vous sur votre code dans l’environnement de bureau GNOME 3. La " -"conception de GNOME prend en compte les commentaires des développeurs et " -"minimise les distractions, afin que vous puissiez vous concentrer sur ce qui" -" est important." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Boîte à outils complète et open source" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Épargnez-vous la peine de chercher ou de construire les outils dont vous " -"avez besoin. Fedora contient un jeu complet d’outils et de langages open " -"source, tous disponibles en un clic de souris ou une seule commande. Il " -"existe même un hébergement de projets et des dépôts comme COPR pour mettre " -"rapidement votre code et ses binaires à la disposition de la communauté." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes & autres outils de virtualisation" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Lancez rapidement vos machines virtuelles afin de tester votre code sur " -"plusieurs plateformes avec GNOME Boxes. Ou creusez plus avant avec les " -"outils de virtualisation puissants et scriptables pour plus de contrôle." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Prise en charge intégrée de Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Conteneurisez vos applications, ou déployez directement sur Fedora des " -"applications conteneurisées, à l’aide des dernières technologies comme " -"Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Prêt à essayer Fedora Workstation ?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Télécharger Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Télécharger Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" -"%s Mio avec l’installateur de média de Fedora pour Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "Image ISO 64 bits de %s Gio pour Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Un téléchargement n’est nécessaire que pour les nouvelles installations. " -"Pour mettre à jour, suivez ces instructions." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" -"%s Mio avec l’installateur de média de Fedora pour Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" -"Téléchargez l’installateur de média de Fedora pour votre système " -"d’exploitation" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Besoin d’instructions ? Ou d’une version différente ?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Utiliser Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Pour lancer Fedora Workstation, vous aurez besoin :" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" -"de Fedora Media Writer/l’installateur de médias Fedora (téléchargement ci-" -"dessus)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "d’une clef USB disposant d’au moins %s Gio d’espace libre" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation est mis à disposition via l’installateur de médias " -"Fedora. Téléchargez ce programme pour votre plateforme " -"supportée et suivez les étapes pour générer une version Live (lire \"Que" -" signifie « Live » ?\" à droite) de Fedora Workstation sur un support USB. " -"Vous pourrez alors lancer la version live de Fedora Workstation depuis votre" -" support USB." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Si vous le souhaitez, vous pouvez installer Fedora Workstation sur un " -"ordinateur portable ou fixe qui a au moins un processeur d’un GHz, 1 Gio de " -"RAM et 10 Gio d’espace libre. Pour ce faire, lancez la version Live de " -"Fedora Workstation à partir de votre clef sur l’ordinateur où vous souhaitez" -" installer, lancez l’installateur de média de Fedora, puis suivez les " -"instruction affichées pour terminer l’installation." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plateformes prises en charge" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "L’installateur de média prend en charge les plateformes suivantes :" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Nous avons détecté que vous utilisez Mac OS X et vous avons" -" proposé cette version au téléchargement. Si nous avons mal détecté votre " -"système d’exploitation, ou si vous désirez télécharger une version " -"différente, cliquez sur le bouton « Voir les téléchargements pour toutes les" -" plateformes » ci-dessous." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Nous avons détecté automatiquement que vous utilisez Linux " -"et vous avons proposé cette version au téléchargement. Si nous avons mal " -"détecté votre système d’exploitation, ou si vous désirez télécharger une " -"version différente, cliquez sur le bouton « Voir les téléchargements pour " -"toutes les plateformes » ci-dessous." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Nous avons détecté que vous utilisez Windows et vous avons " -"proposé cette version au téléchargement. Si nous avons mal détecté votre " -"système d’exploitation, ou si vous désirez télécharger une version " -"différente, cliquez sur le bouton « Voir les téléchargements pour toutes les" -" plateformes » ci-dessous." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Afficher tous les téléchargements de plateformes" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "La mise à jour de Fedora est prise en charge par DNF" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Plus de détails" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Comment utiliser cet ISO ?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Vérifiez l’image" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Image Live 64 bits %s Gio" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Image Live 32 bit %s Gio" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Images d’installation par le réseau :" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "image 32 bits %s Mio" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Essayer Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic fourni une image de système d’exploitation immuable et des mises à " -"jour via OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "Image Atomic 64 bits %s Gio" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "En savoir plus" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" -"Annonce de la nouvelle " -"version" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Lisez l’annonce complète de cette version sur le Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Notes de version" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Découvrez les changements apportés depuis la dernière version de Fedora " -"ainsi que les exigences et recommandations pour exécuter Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Guide d’installation" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Nous vous recommandons de lire le guide d’installation avant d’installer " -"Fedora sur votre système car vous y trouverez la réponse à de nombreuses " -"questions courantes." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Anomalies communes" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Une excellente ressource à consulter dans le cas où vous rencontrez une " -"anomalie dans l’installation ou le fonctionnement de Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Que signifie « Live » ?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"L’installateur de média de Fedora créera une Fedora Workstation complète et " -"fonctionnelle que vous pourrez utiliser immédiatement depuis votre clef " -"USB. Vous pouvez utiliser l’image Live pour tester et jouer avec Fedora sans" -" réaliser le moindre changement sur votre disque dur." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Quand vous êtes prêt, vous pouvez installer Fedora sur votre disque dur " -"depuis cette version « Live » de Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins (variantes)" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs (suites fonctionnelles)" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Télécharger Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Téléchargez Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Mise à jour via DNF si vous utilisez déjà Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ce logiciel est en pré-version et est maintenu par le Workstation Working Group. Veuillez adresser vos " -"questions à leur liste de diffusion ou " -"%(team_irc)s sur freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Utiliser les pré-versions de Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Pour lancer une pré-version de Fedora Workstation, vous aurez besoin de :" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" -"l’installateur de média Fedora (le téléchargement est disponible ci-dessous)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"une image ISO de la pré-version de Fedora que vous " -"souhaitez lancer" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ATTENTION : cette procédure détruit toutes les données présentes sur votre " -"support USB. Assurez-vous de sauvegarder tout fichier important au " -"préalable." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Téléchargez l’installateur de média ci-dessous." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Téléchargez l’image ISO souhaitée." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Ouvrez l’installateur de média de Fedora. Vous aurez peut-être à fournir un " -"mot de passe pour donner les droits nécessaires à l’application." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Sélectionnez « Image personnalisée… » dans la liste." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" -"Sur la page du système d’exploitation personnalisé, sélectionnez le bouton «" -" Sélectionner une image ISO live »." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Dans la fenêtre de sélection, trouvez et sélectionnez l’image ISO que vous " -"avez téléchargée." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Insérez votre clef USB dans l’ordinateur. Si vous avez déjà utilisé cette " -"clef pour créer un média Live dans le passé, vous pourriez avoir à en " -"restaurer la configuration d’usine. Dans ce cas, l’application vous " -"demandera si elle doit le faire." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Sélectionnez « Créer le Live USB » pour écrire l’image. Patientez jusqu’à ce" -" qu’à la fin du processus avant de retirer votre média et de fermer " -"l’application." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Vérifiez 64-bits !" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Vérifiez 32-bits !" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "Comment tester les pré-versions" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Le guide du Wiki Fedora expliquant commenter tester les pré-versions de " -"Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architecture" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Stockage racine" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Démarrer l’instance AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Sélectionnez la région la plus proche" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 bits (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 bits (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Démarrez la." - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Réglementation relative à l’exportation" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Lisez l’intégralité de la réglementation relative à l’exportation." - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"En cliquant et en téléchargeant Fedora, vous accepter de respecter les " -"termes et conditions suivants :" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "En savoir plus >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "À propos" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "À propos de Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsors" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Magazine Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Documents juridiques de référence" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Téléchargez Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Téléchargez Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Télécharger Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Téléchargements alternatifs" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Assistance" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obtenir de l’aide" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Anomalies connues" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portail développeur de Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guide d’installation" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Rejoindre" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Rejoignez Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Fedora planet" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Groupes d’intérêts spéciaux de Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Compte infrastructure Fedora (FAS)" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Communauté Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora est sponsorisé par Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "En savoir plus sur la relation entre Red Hat et Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. and others." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Veuillez transmettre tout commentaire ou correction à l’équipe sites internet." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Modifier la langue" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Et il y en a encore plus dans \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Propre. Puissante. Prête pour tous les nuages." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"La dernière technologie et des fondations stables réunies pour vos " -"applications et services." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentation et autres ressources" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Avant d’installer Fedora, vous désirez peut-être confirmer que votre système" -" satisfait aux exigences de Fedora. Consultez les notes de version en ligne pour connaître " -"les exigences minimum et les recommandations." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Un guide complet d’installation est " -"également disponible. Comme il répond à de nombreuses questions courantes, " -"nous vous conseillons de le parcourir avant d’installer Fedora sur votre " -"système." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Autres méthodes pour obtenir Fedora" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Vous pouvez acheter un média d’installation de Fedora via les" -" vendeurs en ligne ou via un vendeur local près de " -"chez vous." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Vous ne pouvez pas vous offrir un média d’installation ? Demandez le au sein" -" du programme de médias gratuits Fedora." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informations de clés GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Identifiant de clé" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Empreinte digitale" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Obtenez-le depuis :" diff --git a/getfedora.org/po/fur.po b/getfedora.org/po/fur.po deleted file mode 100644 index 1496b7f..0000000 --- a/getfedora.org/po/fur.po +++ /dev/null @@ -1,2817 +0,0 @@ -# Fabio Tomat , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-10 04:14-0400\n" -"Last-Translator: Fabio Tomat \n" -"Language-Team: Friulian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fur\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 2.3.4\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Codiç di condote Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Codiç di condote di Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Compuartiti come un membri de comunitât, rispiete il codiç di condote." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Codiç di condote" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"La comunitât di Fedora e je fate di un miscliç di professioniscj e " -"volontaris di dut il mont, che a lavorin su ogni aspiet de distribuzion, dal" -" codiç ae distribuzion. La diviersitât e je une des nestris plui grandis " -"fuarcis, ma e pues puartâ ancje a problemis di comunicazion e infelicitâts. " -"Par chei motîfs o ven cualchi regule di base che o domandin ae int di aderî " -"cuant che e dopre lis risorsis dal progjet." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Cheste no je une liste esaustive di robis che no si puedin fâ. Invezit, " -"cjapile par come che e je stade pensade - une vuide par rindi plui facil il " -"jessi brâfs pal prossim." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Sta rivuardôs e premurôs. Il to lavôr al vignarà doprât di altre int e tu " -"par cuintri tu dipendarâs sul lavôr di altris. Ogni decision che tu cjapis e" -" influirà utents e coleghis e cjapant decisions tu varâs di tignî in " -"considerazion lis conseguencis." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Puarte rispiet. No ducj a saran dacuardi simpri, ma il disacuardi no je une " -"scuse par un compuartament trist e maleducât. O podarin ducj sperimentâ " -"cualchi frustrazion chi e là, ma no podin permeti a chê frustrazion di fâle " -"diventâ un atac personâl. Al è impuartant visâsi che une comunitât dulà che " -"la int no si sint ben o si sint spaventade, no je une comunitât produtive. I" -" membris de comunitât di Fedora a àn di jessi rispietôs cuant che a àn a ce " -"fâ cun altris colaboradôrs cussì ancje cun personis fûr de comunitât di " -"Fedora e cui utents di Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Cuant che no sin dacuardi o cirin di capî parcè. I disacuardis, sedino " -"sociâi o tecnics, a capitin di un continui e Fedora no je une ecezion. Al è " -"impuartant che o risolvedin i disacuardis e lis viodudis diferentis in " -"maniere costrutive." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Visiti che ognun al è diferent. La fuarce di Fedora e ven de varietât de sô " -"comunitât, int cuntune grande schirie di storiis. Personis diferentis a àn " -"diferentis prospetivis su lis problematichis. No rivâ a capî parcè che " -"cualchidun al ten al so pont di viste nol significhe che al sedi in tuart. " -"No sta dismenteâ che sbaliâ al è uman e dâsi la colpe l'un cul altri nol " -"puarte di nissune bande, invezit ufrìs jutori par risolvi i problemis e judâ" -" a imparâ dai erôrs." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Oten Fedora: discjarie il nestri SO basât su Linux par scritoris di svilup, " -"par eseguî i “container” e altri" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Sielç la libertât. Sielç Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Mancul configurazion, plui inovazion. Sielç une variante di Fedora

otimizade pes tôs necessitâts e tache subite a lavorâ." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s publicade! Provile inte sezion " -"Discjarie." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s publicade! Cjapile daurman." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Postazion di lavôr" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Discjarie cumò" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation al è un sisteme operatîf rafinât e sempliç di doprâ par " -"portatii e computer fìs, cuntune cumbinazion complete di struments par " -"svilupadôrs e produtôrs di ogni gjenar." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Discjarie cumò" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Servidôr" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Servidôr al è un sisteme operatîf potent e flessibil che al inclût " -"lis miôrs e ultimis tecnologjiis di datacenter. Ti met al control di dutis " -"lis tôs infrastruturis e servizis." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic al furnìs la miôr plateforme pe tô pile di aplicazions Linux-" -"Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora e je simpri libare par ducj di jessi doprade, modificade e " -"distribuide. E je costruide e doprade di personis ator pal mont che a " -"lavorin adun come comunitât: il Progjet Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Vûstu plui opzions di Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"La comunitât Fedora e publiche ancje imagjinis ARM, spin live " -"alternativis e altris variantis di Fedora disegnadis par specifics " -"recuisîts. Viôt la liste sui sîts web Fedora Spins o Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Reste conetût e informât." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Vûstu jessi coinvolt? Viôt " -"ce che al sucêt te comunitât? Lei lis " -"ultimis notiziis su Fedora " -"Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Lei la documentazion." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Controle lis notis di publicazion par vê informazions detaiadis su la " -"publicazion atuâl. Par cognossi di plui sul ûs di Fedora e su detais come i " -"recuisîts di sisteme, viôt la documentazion " -"uficiâl." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Oten jutori." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Covential cualchi aiût cun Fedora? Bute un voli su Ask " -"Fedora, lì tu puedis lei archivis di domandis di altris utents o domandâ" -" la tô." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponsor di Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Il progjet Fedora al è braurôs di vê lis organizazions chi daurman come " -"sponsor..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Sponsor primari" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. al è il sponsor primari pal Progjet Fedora." -" Red Hat e da al progjet Fedora une vore di risorsis, includût il supuart di" -" dipendents a timp plen, infrastruture hardware e largjece di bande su " -"internet, finanziament dai events e consulence legâl." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Il Progjet Fedora al è ancje grât ai sponsor chi daurman pal supuart " -"sostanziâl:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Interessât a sponsorizâ alc par Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contate admin@fedoraproject.org o passe di " -"#fedora-admin su irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifiche la imagjin discjariade" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Istruzions pal CHECKSUM e pe verifiche" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Ce mût verifichio la mê imagjin?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Une volte discjariade la imagjin, verifichile pe sigurece e pe integritât. " -"Par verificâ la imagjin, tache discjariant il relatîf file CHECKSUM te " -"stesse cartele de imagjin discjariade." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Par imagjins a 64-bit" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Par imagjins a 32-bit" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Par Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Par iso Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Par imagjins Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Par contignidôr" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Duncje, impuarte la clâf(s) GPG di Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Tu puedis verificâ i detais de clâf(s) GPG achì." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Cumò, verifiche che il file CHECKSUM al sedi valit:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Il file CHECKSUM al à di vê une buine firme di une des clâfs chi daurman:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 architeturis secondaris (AArch64, PPC64, PPC64le, s390 and s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Intal ultin, cumò che il file CHECKSUM al è stât verificât, controle che il " -"checksum de imagjin al corispuindi:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Se il risultât al declare che il file al è valit, alore al è pront par jessi" -" doprât!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Ce mût verifichio la me imagjin discjariade suntun altri sisteme operatîf?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Lei chestis istruzions par verificâ la imagjin." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Oten Fedora Atomic: la miôr plateforme pe tô pile di aplicazions metudis in " -"contignidôrs" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Distribuìs e ridimensione lis tôs aplicazions metudis in contignidôrs " -"cuntune infrastruture imutabile." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Discjarie o eseguìs tal Cloud Public" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“O ven sielzût di doprâ Fedora Atomic come base pe nestre soluzion di " -"provision cluster Navops Launch — Kubernetes parcè che i nestris clients si " -"fidin e a doprin za i sistemis operatîfs Red Hat. Nus plâs l'aspiet imutabil" -" di Fedora Atomic che al è perfet pai ambients metûts in contignidôrs.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Prin Architet, Navops di Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host di Project Atomic e je une lizere, imutabile plateforme, " -"progjetade cul sôl motîf di eseguî aplicazions metudis in contignidôrs." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"La version Fedora di Atomic Host e dopre i stes repository dai pachets di " -"Fedora Servidôr e e furnìs lis ultimis versions dal Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Inzornaments OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Inzorne in automatic il to sisteme al ultin OStree. Rint i tiei servidôrs " -"identics e torne indaûr facilmentri se al ven fûr cualchi probleme di " -"inzornament." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Gjestìs i contignidôrs Docker, i contignidôrs di sisteme, lis aplicazions " -"Atomic e altri doprant un unic e comut strument a rie di comant ." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Perfezionât par Kubernetes e OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Stâstu costruint un cluster Kubernetes o Origin par eseguî aplicazions " -"metudis in contignidôrs? Eseguìsilu su Fedora Atomic, che ti furnìs la " -"plateforme che ti covente suntun sisteme operatîf piçul e svelt." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Sêso pronts par provâ Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Discjarie Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Gracie par vê discjariât Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Il to discjariament al varès di tacâ chi di pôcs seconts. Se no, fâs clic " -"sul colegament chi sot:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifiche il to discjariament!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Une volte discjariade une imagjin, verifichile par sigurece e integritât. " -"Par verificâ la tô imagjin, tache discjariant il file CHECKSUM relatîf inte " -"stesse cartele de imagjin discjariade e seguìs chestis istruzions." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Verifiche!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Discjarie Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Discjarie Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" -"A vegnin gjeneradis gnovis versions di Atomic Host plui o mancul ogni 2 " -"setemanis." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"La ultime version gjenerade di dôs setemanis indaûr no à sodisfat i criteris" -" specificâts pes provis. Lis imagjins disponibilis a son di plui di " -"%(atomic_age)s dîs indaûr. Controle il blog dal Progjet Atomic par " -"inzornaments e informazions su erôrs che a blochin Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Chestis a son lis ultimis imagjins uficiâls di Fedora Atomic Host, prodotis " -"%(atomic_age)s dîs indaûr." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Imagjins Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host al è un sisteme operatîf di base avanzât che al seguìs il" -" model dal Progjet Atomic. Al è progjetât tor Kubernetes e i contignidôrs. " -"Lis imagjins publicadis achì a son une mostre di chel lavôr. Fâs câs che " -"chês imagjins a àn passât diviers nivei di provis automatizadis." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Par plasê prove lis gnovis versions prime di doprâlis in " -"produzion. Se tu scuvierzis un probleme, i struments di Atomic Host" -" a rindin facil tornâ a une version precedente — e se chel al capitàs, par " -"plasê judinus segnalant i erôrs o i inviant lis corezions." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Lis imagjins di Fedora Atomic Host a son inzornadis plui o mancul " -"ogni dôs setemanis, invezit che te cadence principâl di Fedora di " -"sîs mês. Par vie che il svilup al côr, dome l'ultime publicazion principâl " -"di Fedora e je supuartade." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Fâs câs che diferents supuarts di Fedora Atomic Host a son sogjets a" -" diferents nivei di provis automatichis. Tu puedis aprofondî di " -"plui sul progjet Atomic su projectatomic.io. Fâs clic chi par viodi il stât di prove atuâl." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Imagjins Atomic Host par Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"I colegaments chi sot ti furniran une liste di AMI di machinis virtuâls " -"Atomic Host Hardware (HVM) disponibii par regjon cun botons par inviâju tal " -"to account Amazon Web Services. A vegnin furnîts ancje i ID di AMI pal ûs " -"cun la console AWS o i struments a rie di comant." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Formât GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"I AMI di formât GP2 a doprin archivis SSD plui veloçs; dopre chescj AMI pe " -"velocitât, però ten iniments che i coscj dai archivis a saran plui alts dal " -"normâl. " - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Siere" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Regjon" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "ID AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Invie" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Formât standard)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"I AMI di formât standard a son plui adats se tu âs dâts che si doprin in " -"maniere no frecuente e si desidere tignî un cost di archiviazion bas." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "AMI HVM standard" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "AMI HVM Atomic Host standard di Fedora %(rel)s" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Formât standard" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Imagjins Atomic Host par Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Lis scjatulis Vagrant par Fedora Atomic Host a son disponibilis pai " -"furnidôrs VirtualBox e Libvirt. Tu puedis fâ sù Fedora Atomic Host intune " -"scjatule vagrant, discjariant lis imagjins di Fedora o doprant i struments " -"di vagrant par tirâ jù lis imagjins di HashiCorp's Vagrant " -"Cloud." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Viôt i discjariaments Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Discjariaments imagjins Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Chestis imagjins a son imagjins di Scjatulis di Vagrant pe distribuzion " -"doprant Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Imagjin VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Se tu stâs doprant Vagrant su Mac OS X o Windows, cheste e je probabilmentri" -" la imagjin che tu stâs cirint." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Discjarie" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Imagjin Vagrant di base par Virtualbox di %sMB a 64-bit" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Imagjin libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Se tu stâs doprant Vagrant su Fedora, cheste e je la imagjin che tu ciris." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Imagjin Vagrant di base par libvirt/KVM di %sMB a 64-bit" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Viôt i discjariaments doprant i struments di Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Discjariaments Vagrant doprant i struments di Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Tu puedis doprâ il comant chi daurman par otignî lis imagjins des scjatulis " -"Vagrant di HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Se tu âs eseguît in precedence Fedora %(rel)s Atomic Host in Vagrant su la " -"to machine alore tu puedis vê l'ultime version eseguint:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Par vê plui informazions su ce mût eseguî Vagrant su Fedora Workstation, " -"consulte la nestre pagjine wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Imagjins Atomic Host par ambients cloud" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Imagjin qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Chest al è Fedora %(rel)s Cloud Atomic Host intune imagjin in formât Qcow2 " -"pal ûs cun OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Imagjin Qcow2 di %sMB a 64-bit" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Imagjin grese (raw)" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Chest al è Fedora %(rel)s Cloud Atomic Host intun formât imagjin grês " -"comprimût. Se no tu sês sigûr su ce doprâ, prove chest." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Imagjin grese comprimude in xz di %sMB a 64-bit" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Altris Discjariaments" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Imagjin ISO di Atomic Host (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Imagjin contignidôr (%sMB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Prove une version di anteprime" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "O stin lavorant su la prossime version." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Judinus a sistemâ e perfezionâ F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Discjarie lis imagjins di F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Ce mût provâ lis versions di anteprime" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Risorsis" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Progjet " -"Atomic: Vuide introdutive" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Documentazion su ce mût tacâ a doprâ Project Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Mailing List" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Zontiti ae mailing list dal progjet su atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Progjet Atomic: Chat IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Zontiti al canâl #atomic dal Progjet Atomic su " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifiche" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifiche la tô imagjin" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Discjarie Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Chestis a son lis ultimis imagjins di Fedora Atomic Host, gjeneradis ai " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Cheste e je une version di anteprime dal software e e je supuartade dal Grup di lavôr di Atomic. Par plasê mande lis tôs " -"domandis su la lôr mailing list o %(team_irc)s" -" su freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Ducj i problemis o erôrs a àn di jessi segnalâts midiant di Red Hat Bugzilla. Il Progjet Fedora nol garantìs che al sedi" -" adat o util." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "AMI HVM di Atomic Host GP2 di Fedora %(rel)s %(state)s " - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "AMI HVM di Atomic Host standard di Fedora %(rel)s %(state)s" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Lis scjatulis Vagrant par Fedora Atomic Host a son disponibilis pai " -"furnidôrs VirtualBox e Libvirt. Tu puedis tirâ sù Fedora Atomic Host intune " -"scjatule vagrant discjariant lis imagjins di Fedora o doprant i struments di" -" vagrant par tirâ jù lis imagjins di HashiCorp's Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Chest al è Fedora %(rel)s %(state)s Cloud Atomic Host intune imagjin in " -"formât Qcow2 pal ûs cun OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Chest al è Fedora %(rel)s %(state)s Cloud Atomic Host intun formât imagjin " -"grês comprimût. Se no tu sês sigûr su ce doprâ, prove chest." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Progjet Fedora - Pagjine no cjatade" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Pagjine no cjatade" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"O domandin pardon, ma il file o la pagjine domandade no pues jessi cjatade." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ideis par risolvi i problemis" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Torne controle il URL se al è stât inserît a man. Lu âstu copiât just?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Colegament sbaliât? Contate l'aministradôr dal sît web e " -"sclarissii cuâl colegament ti à puartât achì. " - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"La pagjine o il file al pues jessi stât spostât. Controle il sît principâl o cîr il nestri wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Clâfs di firme dai pachets" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Cheste pagjine e liste lis clâfs GPG publichis dopradis pe firme dai pachets" -" in Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Scuvierç ce mût che Fedora ti protêç." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora al dopre la firme di pachets GPG par sigurâsi che che la integritât " -"dal pachet no sedi comprometude." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Lei lis FAQ par savê di plui »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Clâfs atualmentri dopradis" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primarie" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secondarie" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Stâstu cirint clafs vecjis?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Clafs di firme di pachets vecjis" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Cheste pagjine e liste lis clâfs GPG publichis che a no son plui dopradis " -"par firmâ pachets in Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Clâfs vecjis e no dopradis" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Clâf GPG di Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"I pachets sui supuarts di instalazion a son firmâts cun cheste clâf. I plui " -"impuartants repository dnf a son fedora, fedora-" -"updates par Fedora 7-9 e core and core-" -"updates par Fedora Core (version 6 e precedentis). Viôt http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html par vê informazions sul parcè " -"che cheste clâf e je vecje." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 par provis(testing)" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora par provis" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Se tu partecipis aes provis dai pachets, cheste e je la clâf che tu doprarâs" -" par verificâ i pachets di prove. Cheste clâf e firme i pachets che a son " -"intal repository fedora-testing. Viôt http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html par vê informazions su parcè che" -" cheste clâf e je vecje." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 par provis(testing)" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 par provis(testing)" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Se tu stâs doprant Fedora Extras cun Fedora Core 6, dopre chest pachet dal " -"repository extras. Cheste clâf no sarà plui doprade dopo " -"che Fedora Core 6 e Extras a rivin ae fin di vite (EOL) (ai 7 di Dicembar " -"dal 2007). Cheste clâf no je includude intal pachet fedora-" -"release su Fedora 7 e versions sucessivis." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Cheste clâf e jere doprade pai pachets che a jerin publicâts dal progjet " -"Fedora Legacy par inzornâ versions che a jerin rivadis aes lôr fin di vite " -"uficiâls (EOL). Il progjet Fedora Legacy nol esist plui, cussì cheste clâf " -"no vignarà plui doprade par firmâ pachets. Cheste clâf no je includude intal" -" pachet fedora-release su Fedora 7 e versions sucessivis. " - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ su firme dai pachets" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Scuvierç che mût che Fedora al fâs ûs di GPG par firmâ pachets e sigurâsi la" -" tô sigurece." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Ce mût doprial, il Progjet Fedora, lis clâfs GPG par firmâ pachets?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Ogni pachet RPM stabil, che al è publicât dal Progjet Fedora, al è firmât " -"cuntune firme GPG. Di norme, dnf e i struments grafics di inzornament a " -"verificaran chestis firmis e a refudaran di instalâ i pachets che no son " -"firmâts o a àn firmis no justis. Prime di instalâ, tu varessis simpri di " -"verificâ che la firme di un pachet. Chestis firmis a sigurin che i pachets " -"che tu instalis a sedin chei prodots dal Progjet Fedora e che no sedin stâts" -" alterâts (par erôr o in maniere maline) dai servidôr spieli (mirror) o sîts" -" web che a furnissin i pachets." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Pachets che a puedin jessi discjariâts dal sisteme di costruzion Koji no " -"contegnin firmis, duncje tu âs di doprâju cun cautele. In maniere similâr, i" -" pachets plui resints in Rawhide no son par fuarce firmâts." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Daûr a impuartâ lis clâfs" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Lis clâfs a son includudis intal pachet fedora-release, tu" -" puedis cjatâlis inte cartele /etc/pki/rpm-gpg. Fâs câs " -"che no dutis lis clâfs in cheste cartele a vegnin dopradis dal progjet " -"Fedora -- cualchidune e ven doprade par firmâ i pachets di Red Hat " -"Enterprise Linux o no ven plui doprade dal dut. Se tu dopris i pachets di " -"Red Hat Enterprise Linux, bute un voli achì https://www.redhat.com/security/team/key. Lis clâfs " -"dopradis di Fedora a son abilitadis inte configurazion dai repository di " -"dnf, cussì che no ti covente impuartâlis a man inte base di dâts rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"In diplui al pachet fedora-release e cheste pagjine web, tu puedis discjariâ" -" lis clâfs Fedora di un servidôr di clâfs public come keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Par cualchi repository, come chei cun pachets stabii e di prove te " -"configurazion predefinide, dnf al pues cjatâ une clâf juste" -" pal repository e domandâ al utent pe conferme prime di impuartâ la clâf (se" -" la clâf no je za stade impuartade te base di dâts di rpm)." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Tu puedis simpri impuartâ une clâf inte base di dâts di RPM a man, doprant " -"il comant chi daurman:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Fâs riferiment al manuâl di rpm par vê plui informazions." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Se tu vûs verificâ che lis clâfs instaladis sul sisteme a corispuindin aes " -"clâfs listadis achì, tu puedis doprâ GnuPG par controlâ che la impronte " -"digjitâl des clâfs e corispuindi. Par esempli:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Oten Fedora Server: l'ultime tecnologjie pes tôs aplicazions e servizis" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Eseguìs lis tôs aplicazion suntun SO servidôr Linux cun la ultime " -"tecnologjie a sorzint viert." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Facile aministrazion" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Gjestìs il to sisteme in maniere semplice cun la interface moderne e potente" -" di Cockpit. Viôt e ten di voli il stât e lis prestazion di sisteme e " -"distribuìs e gjestìs servizis basâts su contignidôrs." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Servizis base di dâts" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server si puarte daûr un servidôr di base di dâts scalabil e di " -"classe industriâl, ufiert dal progjet open source PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Soluzion complete di domini industriâl" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Pront a provâ Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Discjarie Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Discjarie Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Imagjin di instalazion di %sGB a 64-bit" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"La imagjin di instalazion di Fedora Server ti permet di creâ supuarts pal " -"to computer che si inviin drets al instaladôr, par podê instalâ daurman " -"Fedora Server sul to disc fis" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Par doprâ cheste imagjin tu scugnis vê une unitât che e pues creâ o " -"\"incidi\" i DVD o une unitât flash USB grande almancul tant che la " -"imagjin." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Imagjin Netinstall:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Imagjin di %sMB a 64-bit" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Discjarie imagjinis F%(rel)s Alpha" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Discjarie imagjinis F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Oten plui Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Tecnologjie ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Ce mût fasio deventâ la imagjin Live un supuart che si pues inviâ?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Dopo vê discjariât la imagjin, tu le fasarâs deventâ un supuart inviabil, o " -"incidint la imagjin suntun disc DVD vueit o scrivint la imagjin suntune unitât flash USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Ce mût inviio il computer dal supuart?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Consulte la documentazion dal computer pe procedure di inviament di un " -"supuart diviers dal disc fis integrât. La procedure e pues cambiâ in base al" -" produtôr e al model dal to computer. Tu puedis cjatâ utii chescj conseis usuâi." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Discjarie Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Discjarie Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Imagjin di instalazion di %sGB a 64-bit" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Chest al è software di pre-publicazion e al è supuartât dal Grup di lavôr Server. Fâs lis tôs domandis ae lôr" -" mailing list o al %(team_irc)s su freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Lei lis Notis di publicazion par vê plui " -"informazions su lis modifichis e lis gnovis funzionalitâts, e la pagjine Erôrs software comuns par vê informazions " -"sui erôrs che si cjatin plui dispès e ce mût evitâju." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Cuant vignaraial publicât Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Une volte discjariade une imagjin, verifichile par resons di sigurece e " -"integritât. Par verificâ la imagjin, tache discjariant il file di CHECKSUM " -"chi sot, inte stesse cartele de imagjin discjariade e seguìs chestis istruzions." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Oten Fedora Workstation: il miôr sisteme operatîf par scritoris pai " -"svilupadôrs software" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Cheste e je la postazion di lavôr Linux che tu spietavis." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation al è un sisteme operatîf afidabil, facil e potent, adat " -"ai portatii o ai computer fis. Al supuarte une grande schirie di " -"svilupadôrs, da chei che a svilupin par passetimp e students, ai " -"professioniscj in ambits aziendâi." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“La grande cuantitât di struments furnîts di
Fedora mi permet di vê " -"il lavôr fat.
Semplicementri al funzione.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Inzegnire di rindiment JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Interface utent elegante" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Concentriti sul to codiç tal ambient scritori GNOME 3. GNOME al è costruît " -"su la fonde dai parês dai svilupadôrs e al minimize lis distrazions, cussì " -"che tu ti puedis concentrâ su ce che al è impuartant." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Cassele dai imprescj libars complete" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Evite il lavôr di cirî di cjatâ o costruî i imprescj che ti coventin. Cun la" -" cumbinazion complete di Fedora di lengaçs libars, struments e utilitâts, " -"dut al è a un clic (o a comant) di distance. Al inclût ancje un puest dulà " -"ospitâ i progjets e i repository come COPR par rindi il to codiç e lis " -"versions costruidis disponibilis ae comunitât." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Scjatulis e altris imprescj di virtualizazion" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Configure e eseguìs lis machinis virtuâls subite, par provâ il to codiç su " -"plui plateformis, doprant GNOME Scjatulis. O aprofondìs i potents struments " -"di virtualizazion che si puedin meti in script par vê ancjemò plui control." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Supuart a Docker incorporât" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Met tai contignidôrs lis tôs aplicazions o distribuìs aplicazion in " -"contignidôr fûr de scjatule su Fedora, doprant la ultime tecnologjie come " -"Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Pront par provâ Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Discjarie Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Discjarie Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Scritôr Supuarts di Fedora par Mac OS X (%s MB)" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "ISO par Linux di %s GB a 64-bit." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Un discjariament al covente dome pes gnovis instalazions. Par inzornâ, va daûr di chestis istruzions." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Scritôr Supuarts di Fedora par Windows (%s MB)" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Discjarie Scritôr Supuarts di Fedora pal to sisteme operatîf." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Coventino istruzions? O une version divierse?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Esecuzion di Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Par eseguî Fedora Workstation ti coventarà:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Scritôr Supuarts di Fedora (parsore il colegament par discjariâ)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Une unitât flash USB cun almancul %s GB di spazi disponibil" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Se tu vûs tu puedis instalâ Fedora Workstation suntun portatil o suntun " -"computer fis che al vedi almancul 1 GHz di processôr, 1 GB di RAM e 10 GB " -"di spazi disponibil. Par fâlu, eseguìs la version live di Fedora Workstation" -" de tô unitât flash USB sul computer dulà che tu desideris al sedi instalât," -" eseguìs la aplicazion Scritôr Supuarts di Fedora e seguìs lis istruzions " -"che ti vignaran fûr sul schermi par completâ la instalazion." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plateformis supuartadis" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Scritôr Supuarts di Fedora al supuarte lis plateformis chi daurman:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"O ven rivelât in automatic che tu stâs eseguint Mac OS X e " -"ti ven ufiert di discjariâ la version relative. Se no ven rivelât ben il to " -"sisteme operatîf o tu desideris discjariâ une version diferente, fâs clic " -"sul boton \"Viôt ducj i discjariaments des plateformis\" ca sot." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"O ven rivelât in automatic che tu stâs eseguint Linux e ti " -"ven ufiert di discjariâ la version relative. Se no ven rivelât ben il to " -"sisteme operatîf o tu desideris discjariâ une version diferente, fâs clic " -"sul boton \"Viôt ducj i discjariaments des plateformis\" ca sot." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"O ven rivelât in automatic che tu stâs eseguint Windows e " -"ti ven ufiert di discjariâ la version relative. Se no ven rivelât ben il to " -"sisteme operatîf o tu desideris discjariâ une version diferente, fâs clic " -"sul boton \"Viôt ducj i discjariaments des plateformis\" ca sot." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Viôt ducj i discjariaments des plateformis" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Disponibil vie DNF par Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Plui detais" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Ce mût doprio cheste ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifiche cheste imagjin" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Imagjin Live di %sGB a 64-bit" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Imagjin Live di %sGB a 32-bit" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Imagjins Netinstall:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Imagjin di %sMB a 32-bit" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Prove Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic al furnìs une imagjin di SO imutabile e inzornaments par mieç di " -"OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "Imagjin Atomic di %sGB a 64-bit" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Par savê di plui" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" -"Comunicât di publicazion" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Lei il comunicât di publicazion complet su Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Notis di publicazion" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Aprofondìs in merit aes modifichis fatis de ultime version di Fedora cussì " -"ancje i recuisîts minims e conseâts par eseguî Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Vuide ae instalazion" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Erôrs software comuns" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Une risorse ecelente di consultâ tal câs che si vedi problemis di " -"instalazion o esecuzion cun Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Ce significhial \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Scritôr Supuarts di Fedora al crearà un Fedora Workstation complet e " -"eseguibil che tu podarâs eseguî subite di une unitât USB. Tu puedis doprâ la" -" imagjin Live par provâ e zuiâ cun Fedora cence fâ modifichis al to disc " -"fis." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Cuant che tu sês pront, tu puedis instalâ Fedora sul to disc fis di dentri " -"cheste version \"live\" di Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Discjarie Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Discjarie Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Inzorne midiant DNF se tu sês za su Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" -"Scritôr Supuarts di Fedora (colegament par discjariâ disponibil ca sot)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ATENZION: cheste procedure e distruzarà ducj i dâts sul supuart USB. " -"Sigurâsi di fâ une copie di backup di cualsisei file impuartant dal supuart " -"USB prime di fâ cheste operazion." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Discjarie la aplicazion Scritôr Supuarts di Fedora chi sot." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Discjarie la imagjin ISO che tu desideris." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Vierç la aplicazion Scritôr Supuarts di Fedora. Tu scugnarâs furnî une " -"password par dâ ae aplicazion i permès necessaris." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Verifiche 64-bit!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Verifiche 32-bit!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Ce mût provâ li pre-publicazions" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Vuide wiki di Fedora su ce mût judâ a provâ lis versions di pre-publicazion " -"di Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architeture" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Archivi lidrîs" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Selezione la regjon plui vicine" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Fasint clic e discjariant Fedora, si acete di rispietâ i tiermins e lis " -"condizions chi daurman." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Lei di plui >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Informazions" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Informazions su Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patrocinadôrs" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Notis legâls" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Oten Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Oten Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Oten Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Discjariaments alternatîfs" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Supuart" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Oten jutori" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Erôrs software comuns" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portâl svilupadôrs di Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Vuide ae instalazion" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Unìssiti" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Unìssiti a Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sisteme di account Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunitât Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora al è patrocinât di Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Scuvierç di plui su la relazion tra Red Hat e Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. e altris." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Par plasê, invie coments e corezions al grup di websites." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Cambie lenghe" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Va ben" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Svelte. Potente. Pronte par ogni cloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"L'ultime tecnologjie. Une base stabile. Adun pes tôs aplicazions e servizis." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentazion e altris risorsis" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Prime di instalâ Fedora, al è il câs di sigurâsi che il sisteme al rispieti " -"i recuisîts minims par Fedora. Bute un voli aes notis di publicazion online par viodi i " -"recuisîts minims e lis racomandazions." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"E je ancje disponibile une Vuide ae " -"instalazion complete. Viodût che e rispuint a tantis domandis comuns, o " -"consein che si dedi un voli a chê prime di instalâ sul sisteme." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Altris manieris par otignî i supuarts" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Si puedin comprâ i supuarts di instalazion par Fedora dai vendidôrs online o di un vendidôr locâl " -"te tô zone." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"No tu puedis permetiti il presit dal supuart di instalazion? Domande il " -"supuart di instalazion di Fedora dal Fedora Free Media " -"Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informazions clâf GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID clâf" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Impronte digjitâl" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Otegnile di:" diff --git a/getfedora.org/po/ga.po b/getfedora.org/po/ga.po deleted file mode 100644 index 467719a..0000000 --- a/getfedora.org/po/ga.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Irish\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/getfedora.pot b/getfedora.org/po/getfedora.pot deleted file mode 100644 index 1b152fd..0000000 --- a/getfedora.org/po/getfedora.pot +++ /dev/null @@ -1,2479 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2018 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2018. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-12-16 21:02+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 2.3.4\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and " -"volunteers from all over the world, working on every aspect of the " -"distribution from coding through to marketing. Diversity is one of our " -"huge strengths, but it can also lead to communication issues and " -"unhappiness. To that end, we have a few ground rules that we ask people " -"to adhere to when they're using project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take " -"it in the spirit in which it's intended - a guide to make it easier to be" -" excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn " -"will depend on the work of others. Any decision you take will affect " -"users and colleagues, and you should take those consequences into account" -" when making decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is" -" no excuse for poor behavior and poor manners. We might all experience " -"some frustration now and then, but we cannot allow that frustration to " -"turn into a personal attack. It's important to remember that a community " -"where people feel uncomfortable or threatened is not a productive one. " -"Members of the Fedora community should be respectful when dealing with " -"other contributors as well as with people outside the Fedora community " -"and with users of Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social " -"and technical, happen all the time and Fedora is no exception. It is " -"important that we resolve disagreements and differing views " -"constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its " -"varied community, people from a wide range of backgrounds. Different " -"people have different perspectives on issues. Being unable to understand " -"why someone holds a viewpoint doesn't mean that they're wrong. Don't " -"forget that it is human to err and blaming each other doesn't get us " -"anywhere, rather offer to help resolving issues and to help learn from " -"mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:17 -msgid "" -"The Fedora Privacy Policy has been updated. Read the new " -"version on the wiki." -msgstr "" - -#: data/content/index.html:18 -msgid "Use of Fedora services is subject to these terms starting May 25, 2018." -msgstr "" - -#: data/content/index.html:28 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:29 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:42 data/content/index.html:53 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the " -"Download section." -msgstr "" - -#: data/content/index.html:65 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:80 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:82 data/content/index.html:98 -#: data/content/index.html:113 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:87 data/content/index.html:144 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop" -" and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:89 data/content/index.html:104 -#: data/content/index.html:119 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:96 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:102 data/content/index.html:149 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all " -"your infrastructure and services." -msgstr "" - -#: data/content/index.html:111 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:117 -#: data/content/index.html:154 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes" -" (LDK) application stack." -msgstr "" - -#: data/content/index.html:177 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is " -"built and used by people across the globe who work together as a " -"community: the Fedora Project." -msgstr "" - -#: data/content/index.html:190 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:209 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:216 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:226 -msgid "" -"Want to get involved? " -"Find out what's happening in the community? Read up " -"on the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:236 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:246 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current " -"release. To learn more about using Fedora and details such as system " -"requirements, see the official " -"documentation." -msgstr "" - -#: data/content/index.html:253 -msgid "Get help." -msgstr "" - -#: data/content/index.html:263 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, " -"where you can read archives of questions from other users, or ask your " -"own question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware " -"and bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for " -"providing substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. " -"To verify your image, start by downloading the proper CHECKSUM file into " -"the same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:72 -msgid "For Atomic Host ISOs" -msgstr "" - -#: data/content/verify.html:74 data/content/verify.html:85 -msgid "x86_64" -msgstr "" - -#: data/content/verify.html:75 data/content/verify.html:86 -msgid "aarch64" -msgstr "" - -#: data/content/verify.html:76 data/content/verify.html:87 -msgid "ppc64le" -msgstr "" - -#: data/content/verify.html:82 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:96 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:98 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:99 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:101 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:103 -msgid "Fedora 30" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:104 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:105 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:106 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:108 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:110 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:111 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:112 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as " -"Fedora Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using " -"one convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform " -"you need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. " -"To verify your image, start by downloading the proper CHECKSUM file into " -"the same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic" -" blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. " -"The images published here showcase that work. Note that the images have " -"passed several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If " -"you do discover a problem, the Atomic Host tools make it easy to flip " -"back to an earlier release — and if that happens, please also help us by " -"filing bugs or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because" -" development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about " -"the Atomic project at projectatomic.io. Click here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host " -"Hardware Virtual Machine (HVM) AMIs by region with buttons to launch them" -" in your Amazon Web Services account. AMI IDs for usage with the AWS " -"Console or command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:72 -msgid "GP2 Format HVM AMIs (x86_64)" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:107 -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:81 -#: data/content/atomic/download/index.html:145 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, " -"although note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:85 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:149 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:86 -#: data/content/atomic/download/index.html:117 -#: data/content/atomic/download/index.html:150 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:87 -#: data/content/atomic/download/index.html:118 -#: data/content/atomic/download/index.html:151 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:104 -msgid "Standard Format HVM AMIs (x86_64)" -msgstr "" - -#: data/content/atomic/download/index.html:112 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:136 -msgid "GP2 Format HVM AMIs (aarch64)" -msgstr "" - -#: data/content/atomic/download/index.html:172 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:174 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and" -" Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box " -"by downloading the images from Fedora or using the vagrant tools to pull " -"the images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:175 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:185 -msgid "VirtualBox Image for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:186 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:198 -msgid "libvirt/KVM Image for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:199 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:202 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:211 -msgid "How to download using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:219 -#, python-format -msgid "" -"Use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:221 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:234 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:244 -#, python-format -msgid "" -"Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use with " -"OpenStack" -msgstr "" - -#: data/content/atomic/download/index.html:259 -#: data/content/atomic/download/index.html:271 -#: data/content/atomic/download/index.html:283 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:296 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#, python-format -msgid "Fedora %(rel)s Cloud Atomic Host in a compressed raw image format" -msgstr "" - -#: data/content/atomic/download/index.html:312 -#: data/content/atomic/download/index.html:324 -#: data/content/atomic/download/index.html:336 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:355 -msgid "Atomic Host Images for Bare Metal" -msgstr "" - -#: data/content/atomic/download/index.html:364 -msgid "ISO Image" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#, python-format -msgid "Fedora %(rel)s Cloud Atomic Host in an ISO image format" -msgstr "" - -#: data/content/atomic/download/index.html:380 -#: data/content/atomic/download/index.html:392 -#: data/content/atomic/download/index.html:404 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:424 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:123 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:426 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:434 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:435 -#: data/content/server/download/index.html:126 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:436 -#: data/content/server/download/index.html:127 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:437 -#: data/content/server/download/index.html:128 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:438 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:439 -#: data/content/server/download/index.html:130 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:445 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:196 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:446 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project" -" Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:447 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:448 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:449 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:450 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:451 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:454 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:146 -#: data/content/workstation/download/index.html:225 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:457 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:149 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:228 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions " -"to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its " -"suitability or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and" -" Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box " -"by downloading the images from Fedora or using the vagrant tools to pull " -"the images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:51 -#: data/content/server/download/index.html:59 -#: data/content/server/download/index.html:67 -#: data/content/server/download/index.html:82 -#: data/content/server/download/index.html:90 -#: data/content/server/download/index.html:98 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw " -"image format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it " -"correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link" -" brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main " -"site or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity " -"has not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 -msgid "Primary or Secondary" -msgstr "" - -#: data/content/keys/index.html:59 data/content/keys/index.html:72 -#: data/content/keys/index.html:85 data/content/keys/index.html:102 -#: data/content/keys/index.html:115 data/content/keys/obsolete.html:72 -#: data/content/keys/obsolete.html:85 data/content/keys/obsolete.html:100 -#: data/content/keys/obsolete.html:113 data/content/keys/obsolete.html:126 -#: data/content/keys/obsolete.html:139 data/content/keys/obsolete.html:154 -#: data/content/keys/obsolete.html:167 data/content/keys/obsolete.html:188 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 data/content/keys/obsolete.html:401 -#: data/content/keys/obsolete.html:422 data/content/keys/obsolete.html:443 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:102 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:115 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:131 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages" -" in Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf" -" repositories are fedora, fedora-" -"updates for Fedora 7-9, and core and core-updates for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this " -"key is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will " -"use to verify the testing packages. This key signs the packages that are " -"in fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this " -"key is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 data/content/keys/obsolete.html:401 -#: data/content/keys/obsolete.html:422 -msgid "Secondary" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "Fedora 26" -msgstr "" - -#: data/content/keys/obsolete.html:443 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:456 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:456 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:469 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:469 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used " -"after Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is" -" not included in the fedora-release package in Fedora 7 " -"and later releases." -msgstr "" - -#: data/content/keys/obsolete.html:486 data/content/keys/obsolete.html:501 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:486 data/content/keys/obsolete.html:501 -msgid "" -"This key was used for packages that were released by Fedora Legacy " -"project to update releases that reached their official EOL. The Fedora " -"Legacy project no longer exists, so this key will no longer be used to " -"sign packages. This key is not included in the fedora-" -"release package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed " -"with a GPG signature. By default, dnf and the graphical update tools " -"will verify these signatures and refuse to install any packages that are " -"not signed or have bad signatures. You should always verify the " -"signature of a package before you install it. These signatures ensure " -"that the packages you install are what was produced by the Fedora Project" -" and have not been altered (accidentally or maliciously) by any mirror or" -" website that is providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-" -"edge packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you" -" can find them in the /etc/pki/rpm-gpg directory. " -"Please note that not all keys in this directory are used by Fedora " -"project -- some are used for signing Red Hat Enterprise Linux packages or" -" are no longer used at all. If you use Red Hat Enterprise Linux packages," -" see https://www.redhat.com/security/team/key. The " -"keys used by Fedora are enabled in the dnf repository configuration, so " -"you generally don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing " -"packages in default configuration, dnf is able to find a" -" proper key for the repository and asks the user for confirmation before " -"importing the key if the key is not already imported into the rpm " -"database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the " -"following command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the " -"keys listed here, you can use GnuPG to check that the fingerprint of the " -"key matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your" -" server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any " -"OS, to make use of the very latest technologies available in the open " -"source community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions " -"of software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, " -"and keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View" -" and monitor system performance and status, and deploy and manage " -"container-based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database " -"server powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered" -" regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it" -" won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -msgid "" -"Select the format and architecture you require from the list below to get" -" started using Fedora Server now." -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Fedora Server Images" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on" -" to your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or " -"a USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "x86_64 Images" -msgstr "" - -#: data/content/server/download/index.html:49 -#: data/content/server/download/index.html:80 -msgid "Description" -msgstr "" - -#: data/content/server/download/index.html:50 -#: data/content/server/download/index.html:81 -msgid "Size" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/download/index.html:88 -#, python-format -msgid "%sGB" -msgstr "" - -#: data/content/server/download/index.html:65 -#: data/content/server/download/index.html:96 -#: data/content/server/download/index.html:104 -#, python-format -msgid "%sMB" -msgstr "" - -#: data/content/server/download/index.html:76 -msgid "aarch64 Images" -msgstr "" - -#: data/content/server/download/index.html:115 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the" -" Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:125 -#: data/content/workstation/download/index.html:169 -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:129 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:135 -#: data/content/workstation/download/index.html:210 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:139 -#: data/content/workstation/download/index.html:219 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. " -"Either burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot " -"from media other than the built-in hard disk. The process may differ " -"based on the manufacturer and model of your computer. You may find these common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions " -"to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more " -"information on changes and new features, and the Common Bugs page for information on " -"commonly-encountered bugs and how to avoid them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. " -"To verify your image, start by downloading the CHECKSUM file below into " -"the same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built " -"with developer feedback and minimizes distractions, so you can " -"concentrate on what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With " -"Fedora's complete set of open source languages, tools, and utilities, " -"everything is a click or command line away. There's even project hosting " -"and repositories like COPR to make your code and builds available quickly" -" to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple" -" platforms using GNOME Boxes. Or dig into powerful, scriptable " -"virtualization tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box " -"on Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the" -" right) of Fedora Workstation on a USB flash drive. You may then run the " -"live version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from " -"your USB flash drive on the computer you'd like to install to, run the " -"Fedora Media Writer application, and follow the on-screen prompts to " -"complete installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your " -"operating system incorrectly or you would like to download a different " -"version, please click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and " -"have offered that version for download. If we have detected your " -"operating system incorrectly or you would like to download a different " -"version, please click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and " -"have offered that version for download. If we have detected your " -"operating system incorrectly or you would like to download a different " -"version, please click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:187 -msgid "Try Fedora Silverblue" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Silverblue provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#, python-format -msgid "64-bit %sGB Silverblue image" -msgstr "" - -#: data/content/workstation/download/index.html:192 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:200 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:201 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:202 -msgid "" -"We recommend you look through this before installing to your system, " -"since it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues " -"installing or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:206 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:207 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation " -"you can run right away off of a USB drive. You can use the Live image to " -"test and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:208 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:213 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:216 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct " -"questions to their mailing list or " -"%(team_irc)s on freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora " -"you wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to" -" back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to " -"give the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick " -"previously to create live media, you may need to restore it to factory " -"settings. The app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your " -"applications and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets " -"minimum requirements for Fedora. Consult the online release notes to see minimum " -"requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing " -"to your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online" -" vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation" -" media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" - diff --git a/getfedora.org/po/gl.po b/getfedora.org/po/gl.po deleted file mode 100644 index 42ceb8f..0000000 --- a/getfedora.org/po/gl.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:24-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Descargar" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Sobre" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Sobre Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Asistencia técnica" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obter axuda" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Pregunte a Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guía de instalación" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Unirse" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Únase a Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistema de contas de Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunidade de Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora é patrocinado por Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Aceptar" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/gu.po b/getfedora.org/po/gu.po deleted file mode 100644 index d8b115a..0000000 --- a/getfedora.org/po/gu.po +++ /dev/null @@ -1,2447 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Pranjal Vyas , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-11-13 05:52-0500\n" -"Last-Translator: Pranjal Vyas \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" -"Language: gu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "આગળ , ફેડોરા ની GPG કી (ઓ) ને આયાત કરો" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "તમે GPG કી (ઓ) ની વિગતોને .અહીં ચકાસી શકો છો" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "હવે, ચકાસો કે CHECKSUM ફાઇલ યોગ્ય છે:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM ફાઇલ પાસે નીચેનાંની કીઓમાંથી એકનાં સારા હસ્તાક્ષર હોવા જોઇએ:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ડાઉનલોડ" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"URL ને બે વાર ચકાસો જો તમે જાતે જ તેને દાખલ કરેલ હતી. યોગ્ય રીતે તમે તેની " -"નકલ કરી હતી?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "કીઓ ને આયાત કરી રહ્યા છે" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"નીચેનાં આદેશની મદદથી હાથ દ્દારા RPM નાં ડેટાબેઝમાં તમે હંમેશા કી ને આયાત કરી" -" શકો છો:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "વધારે જાણકારી માટે rpm પુસ્તિકાનો સંદર્ભ લો." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"જો તમે ચકાસવા ઇચ્છતા હોય તો કે જે તમારી સિસ્ટમ પર સ્થાપિત થયેલ કીઓ અહિંયા " -"યાદી થયેલ કીઓ સાથે બંધબેસતી છે, તમે ચકાસવા માટે GnuPG ને વાપરી શકો છો કે જે " -"કી ની ફિંગરપ્રીન્ટ બંધબેસે છે. ઉદાહરણ માટે:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "વિશે" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora વિશે" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "આધાર" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "મદદ મેળવો" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "સ્થાપન માર્ગદર્શિકા" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "જોડાવો" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora માં જોડાવો" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "પ્લાનેટ Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ફેડોરા ખાતા પ્રણાલી " - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "ફેડોરા સમુદાય" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora એ Red Hat દ્દારા પ્રાયોજિત થયેલ છે." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "બરાબર" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/he.po b/getfedora.org/po/he.po deleted file mode 100644 index 7af1873..0000000 --- a/getfedora.org/po/he.po +++ /dev/null @@ -1,2527 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Niv Baehr , 2016. #zanata -# Niv Baehr , 2017. #zanata -# Yaron Shahrabani , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-03-21 07:42-0400\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" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "קוד התנהגות Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "קוד ההתנהגות של Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "התנהגו כחברים בקהילה, עקבו אחר קוד ההתנהגות." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "קוד התנהגות" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"קהילת Fedora משלבת מקצוענים ומתנדבים מכל העולם, העובדים על כל פרט של ההפצה " -"החל מכתיבת הקוד ועד השיווק. הגיוון הוא שמאפשר לנו להיות חזקים, אולם עלול גם " -"להוביל לבעיות תקשורת ולאומללות. בשל כך, יש לנו כמה כללי בסיס בהם אנו מבקשים " -"לדבוק בעת שימוש במשאבי המיזם. " - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"אין זה פירוט מתיש של דברים שאסור לעשות. קחו אותו ברוח הטובה עליה הוא נועד " -"לשמור – מדריך המקל עלינו להיות נהדרים האחד כלפי השני." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"היו מתחשבים. העבודה שלכם תשמש אנשים אחרים, וגם אתם בתורכם תסתמכו על עבודה של" -" אחרים. כל החלטה שתקבלו תשפיע על משתמשים ועל עמיתים, ועליכם לקחת בחשבון " -"תוצאות אלו בעת קבלת ההחלטות." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"כבדו את האחר. אין כולנו מסכימים כל הזמן, אבל חלוקי דעות אינם תרוץ להתנהגות " -"גרועה ולנימוסים רעים. כולנו עלולים לחוות תסכול מסוים פה ושם, אך לא נוכל " -"להרשות לתסכול זה להפוך לתקיפה אישית. חשוב לזכור שקהילה בה אנשים מרגישים לא " -"בנח או מאוימים אינה קהילה פורה. חברים בקהילת Fedora צריכים לרחוש כבוד כלפי " -"התורמים האחרים בעבודה מולם לא פחות מאשר כלפי אנשים מחוץ לקהילת Fedora וכלפי " -"משתמשים של Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"כאשר איננו מסכימים, נשתדל להבין מדוע. מחלוקות, הן חברתיות והן טכניות, קיימות" -" כל הזמן ו־Fedora אינה יוצאת מן הכלל. חשוב שניישב את חלוקי הדעות באופן בונה." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"זכרו שאנחנו שונים. הכח של Fedora מגיע מקהילתה המגוונת, אנשים מטווח רקעים " -"רחב. לאנשים שונים יש השקפות שונות. חוסר הבנה מדוע אנשים מחזיקים בדעה מסוימת " -"אינו אומר שהם טועים. אין לשכוח שלטעות זה אנושי ואישומים הדדים לא יובילו " -"אותנו לשום מקום, מוטב להציע להושיט יד בפתרון הבעיות ובלמידה מטעויות." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"הורדת פדורה: ניתן להוריד את מערכת ההפעלה מבוססת הלינוקס למחשבי פיתוח, מכולות" -" פעילות ועוד." - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "בחרו בחופש. בחרו ב־Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"פחות הכנה, יותר חדשנות. בחרו בטעם של Fedora

המתאים לכם ותוכלו " -"מיד להתחיל בעבודה." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "שוחררה Fedora %(rel)s! קבלו עכשיו." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "הורידו עכשיו" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation היא מערכת הפעלה מלוטשת ונוחה לשימוש עבור מחשבים ניידים " -"ומחשבים שולחניים, עם ערכת כלים מלאה למפתחים ויוצרים מכל המינים." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "הורידו עכשיו" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server היא מערכת הפעלה גמישה ורבת עצמה המכילה את טכנולוגיות מרכז " -"הנתונים האחרונות והטובות ביותר. נותנת לכם שליטה על כל השירותים והתשתיות." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora תמיד חופשית לכולם לשימוש, שינוי והפצה. היא נבנתה ונמצאת בשימוש על ידי" -" אנשים מכל העולם העובדים יחד כקהילה: מיזם Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "רוצים אפשרויות Fedora נוספות?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"קהילת Fedora משחררת גם תמונות " -"ARM, מהדורות חיות חלופיות, ומגוון גרסאות של Fedora שהותאמו לדרישות " -"מיוחדות. עיינו בהן במהדורות " -"Fedora או באתר מעבדות " -"Fedora." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "היו מחוברים ומעודכנים." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"ברצונכם להיות מעורבים? לגלות" -" מה קורה בקהילה? " -"קראו את החדשות האחרונות והתפתחויות מעניינות ב־Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "קראו את התיעוד." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"בדקו את הערות השחרור למידע מפורט לגבי השחרור הנוכחי. כדי ללמוד עוד על השימוש" -" ב־Fedora ופרטים כגון דרישות המערכת, ראו את התיעוד " -"הרשמי." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "קבלו עזרה." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"זקוקים לעזרה עם Fedora? בדקו את Ask Fedora, שם תוכלו " -"לקרוא ארכיונים עם שאלות ממשתמשים אחרים, או לשאול שאלות בעצמכם." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "נותני החסות של Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "מיזם Fedora גאה לקבל חסות מארגונים אלו..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "נותן חסות ראשי" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. היא נותנת החסות הראשית של מיזם Fedora.חברת " -"Red Hat מספקת למיזם Fedora מגוון רחב של משאבים, הכוללים תמיכה לעובדים במשרה " -"מלאה, חמרת תשתית ותעבורה, מימון אירועים ויעוץ חוקי." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "מיזם Fedora מודה גם לנותני החסות הבאים על סיפוק תמיכה ניכרת:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "מעוניינים לממן משהו עבור Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"צרו קשר עם admin@fedoraproject.org או קפצו " -"לערוץ #fedora-admin בשרת irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "אימות התמונה שירדה" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "הוראות אימות וסיכום ביקורת" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "איך לאמת את התמונה?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"ברגע שהתמונה ירדה, יש לאמת שהיא שלמה ובטוחה. כדי לאמת את התמונה, התחילו " -"בהורדת קובץ CHECKSUM המתאים לאותה תיקייה בה נמצאת התמונה." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "עבור תמונות 64־סיביות" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "עבור תמונות 32־סיביות" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "בהמשך, יש לייבא את מפתח/ות GPG של Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "ניתן לאמת את פרטי מפתחות ה־GPG כאן." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "עתה יש לבדוק את שקובץ ה־CHECKSUM תקף:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "קובץ ה־CHECKSUM צריך לכלול חתימה תקינה על ידי אחד מהמפתחות להלן:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 עבור ארכיטקטורות משניות (AArch64, PPC64, PPC64le, s390 ו־s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"לבסוף, לאחר שקובץ ה־CHECKSUM אומת, יש לבדוק שסיכום הביקורת של התמונה מתאים:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "אם הפלט מציין שהקובץ תקין, אז הוא מוכן לשימוש!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "איך לאמת את התמונה שהורדתי על גבי מערכת הפעלה אחרת?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "עדכוני OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "מוכנים לקחת את Fedora Atomic לסיבוב ניסיון?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "תודה שהורדתם Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "ההורדה אמורה להתחיל תוך מספר שניות. אם לא, יש ללחוץ על הקישור להלן:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "אימות ההורדה!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"ברגע שהתמונה ירדה, יש לאמת שהיא שלמה ובטוחה. כדי לאמת את התמונה, התחילו " -"בהורדת קובץ CHECKSUM המתאים לאותה תיקייה בה נמצאת התמונה ועקבו אחר הוראות אלו." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "הורידו את Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "הורידו את Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host נבנה מדי שבועיים." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "תמונות Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "סגירה" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "אזור" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "מזהה AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "הפעלה" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "תמונות Atomic Host עבור Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "תמונת VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"במידה ואתם משתמשים ב־Vagrant על גבי Mac OS X או Windows, זו התמונה בה תרצו " -"להשתמש." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "הורדה" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "תמונת VirtualBox בסיסית עבור Vagrant של 64 סיביות %s מ״ב" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "תמונת libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "במידה ואתם משתמשים ב־Vagrant על גבי Fedora, זו התמונה בה תרצו להשתמש." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "תמונת libvirt/KVM בסיסית עבור Vagrant של 64 סיביות %s מ״ב" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "תמונת qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "תמונת Qcow2 של 64 סיביות %s מ״ב" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "תמונה גולמית (Raw)" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"זו Fedora %(rel)s Cloud Atomic Host בפורמט דחוס של תמונה גולמית. אם אינכם " -"בטוחים, נסו זאת." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "תמונה גולמית בדחיסת xz של 64 סיביות %s מ״ב" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "שאר ההורדות" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "נסו גרסת קדם־שחרור" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "אנו עובדים על השחרור הבא." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "עזרו לנו להכין את F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "הורידו תמונות %(state)s של F%(rel)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "איך לבדוק גרסאות קדם־שחרור" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "משאבים" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: צעדים ראשונים" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "אימות" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "אימות התמונה" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "הורידו את Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "מיזם Fedora - הדף לא נמצא." - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: הדף לא נמצא." - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "מצטערים, אך לא ניתן למצוא את הדף או הקובץ המבוקשים." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "רעיונות לפתרון בעיות" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "אם הכתובת הוזנה ידנית יש לבדוק אותה בשנית. האם הכתובת הועתקה במדויק?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "מפתחות חתימת חבילות" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "למדו איך Fedora מגנה עליכם." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "קראו את השאלות הנפוצות כדי ללמוד עוד »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "מפתחות בשימוש" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "ראשי" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "משני" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "מחפשים מפתחות ישנים?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "מפתחות חתימת חבילות מיושנים" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "מפתחות מיושנים ושאינם בשימוש" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "מפתח ה־GPG של Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "בדיקת Fedora >= 7" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "בדיקת Fedora" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "בדיקת Fedora 8-9" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "בדיקת Fedora 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "תוספות Fedora" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "שאלות נפוצות לגבי חתימת חבילות" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "למדו כיצד Fedora משתמשת ב־GPG לחתימה על חבילות כדי להבטיח את בטחונכם." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "כיצד מיזם Fedora משתמש במפתחות GPG לחתימה על חבילות?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"החבילות שניתן להוריד ממערכת הבניה Koji אינן מכילות חתימות, כדאי להיזהר " -"בשימוש. באופן דומה, חבילות ניסיוניות ב־Rawhide לא חתומות בהכרח." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "יבוא מפתחות" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"ניתן תמיד לייבא מפתח לבסיס הנתונים של RPM באופן ידני בעזרת הפקודה הבאה:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "ניתן לקרוא מידע נוסף בדף התיעוד של rpm." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"כדי לאמת שהמפתחות המותקנים על המערכת שלך תואמים למפתחות הרשומים כאן, ניתן " -"להשתמש ב-GnuPG כדי לבדוק שטביעת האצבע של המפתח תואמת. לדוגמה:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "ניהול פשוט" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "שירותי מסד נתונים" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Sever מביאה עמה שרת מסד נתונים ברמה ארגונית המבוססת על מיזם הקוד " -"הפתוח PostreSQL. " - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "מוכנים לקחת את Fedora Server לסיבוב ניסיון?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "הורידו את Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "הורידו את Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "תמונה להתקנה של 64 סיביות %s ג״ב" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "תמונה להתקנה מרשת:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "תמונת 64 סיביות %s מ״ב" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "הורידו תמונות אלפא של F%(rel)s" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "הורידו תמונות בטא של F%(rel)s" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "קבלו עוד Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "טכנולוגיית ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "איך להפוך את התמונה החיה למדיה הניתנת לאתחול?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "איך לאתחל ממדיה?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "הורידו את Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "תמונה להתקנה של 64 סיביות %s ג״ב" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "מתי צפויה Fedora %s להשתחרר?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "קראו את כל אבני הדרך המרכזיות בתכנית השחרור..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "תחנת העבודה של לינוקס לה חיכיתם." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation היא מערכת הפעלה אמינה, ידידותית למשתמש ורבת עצמה עבור " -"מחשבים ניידים ומחשבים שולחניים. מספקת תמיכה רחבת היקף במפתחים, החל מסטודנטים" -" וחובבים ועד למקצוענים בסביבה ארגונית." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM performance engineer" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "ממשק משתמש מהוקצע" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"התרכזו בקוד בסביבת שולחן העבודה GNOME 3. סביבת GNOME נבנתה עם משוב ממפתחים " -"וממזערת הסחות דעת, כדי שתוכלו להתרכז במה שחשוב." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "ארגז כלים שלם בקוד פתוח" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"דלגו על המטרד שבניסיון מציאת הכלים הנחוצים או בבנייתם. עם הערכה השלמה " -"ב־Fedora של שפות, כלים ועזרים בקוד פתוח, הכל רק במרחק לחיצה או שורת פקודה. " -"קיים אף מיזם אחסון כגון COPR כדי לדאוג שהקוד והבנייה יהיו זמינים לקהילה " -"במהירות." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "קופסאות GNOME ושאר כלי וירטואליזציה (virt)" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "תמיכה מובנית ב־Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "מוכנים לקחת את Fedora Workstation לסיבוב ניסיון?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "הורידו את Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "הורידו את Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s מ״ב כותב המדיה של Fedora עבור Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "דמות ISO של 64 סיביות %s ג״ב עבור Linux" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s מ״ב כותב המדיה של Fedora עבור Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "הורידו את כותב המדיה של Fedora עבור מערכת ההפעלה שלכם." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "זקוקים להוראות? או לגרסה אחרת?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "תמונה חיה של 32 סיביות %s ג״ב" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "תמונות להתקנה מרשת:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "תמונת 32 סיביות %s מ״ב" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "מהדורות Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "מעבדות Fedora" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "הורידו את Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "הורידו את Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "כותב המדיה של Fedora (הורדה זמינה להלן)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "ארכיטקטורה" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "בחרו את האזור הקרוב ביותר" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64־סיביות (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32־סיביות (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "הפעלה!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "תקנות יצוא" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "קראו את תקנות היצוא המלאות" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "על ידי לחיצה והורדת Fedora, אתם מסכימים להיענות לתנאים הבאים." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "קרא עוד >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "על אודות" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "על אודות Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "נותני חסות" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "מידע משפטי" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "קבלו את Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "קבלו את Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "קבלו את Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "תמיכה" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "קבלת עזרה" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "בעיות נפוצות" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "פורטל המפתחים של Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "מדריך התקנה" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "הצטרפות" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "הצטרפות ל־Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "קבוצות עניין מיוחדות (SIGs) של Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "מערכת החשבונות של Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "קהילת Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora ממומנת על ידי Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "למדו עוד על היחסים שבין Red Hat ו־Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. ואחרים." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Change Language" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "אישור" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "רזה. עצמתית. מוכנה לשימוש בכל ענן." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "הטכנולוגיה האחרונה. תשתית יציבה. יחד, עבור השירותים והיישומים שלכם" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "תיעוד ושאר משאבים" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "דרכים נוספות להשגת מדיה" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"תוכלו לרכוש מדית התקנה עבור Fedora מספקים מקוונים או ספקים מקומיים באזורכם." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"אין ביכולתכם לרכוש מדית התקנה? בקשו מדית התקנה מ־Fedora Free " -"Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "מידע מפתח GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "מזהה מפתח" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "טביעת אצבע" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "מזהה ייחודי (uid)" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "קבלו מ:" diff --git a/getfedora.org/po/hi.po b/getfedora.org/po/hi.po deleted file mode 100644 index 0f6fe93..0000000 --- a/getfedora.org/po/hi.po +++ /dev/null @@ -1,2446 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:24-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "आगे, Fedora की GPG कुंजी आयात करें:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "अब, जाँचें CHECKSUM फाइल वैध है:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM फाइल को इनमें से एक कुंजी से अच्छा हस्ताक्षर रखना चाहिए:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "डाउनलोड" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"दो बार URL की जाँच कर लें यदि आपने इसे दस्ती रूप से दाखिल किया है. क्या आपने" -" इसे सही रूप से कॉपी किया है?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "कुंजी का आयात" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"आप हमेशा किसी कुंजी को RPM डेटाबेस में दस्ती रूप से निम्नलिखित कमांड के " -"प्रयोग से आयात कर सकते हैं:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "rpm का अधिक सूचना के संदर्भ लें." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"यदि आप जाँचना चाहते हैं कि आपके सिस्टम पर संस्थापित कुंजी यहाँ सूचीबद्ध " -"कुंजी से मेल खाए, आप GnuPG का प्रयोग जाँचने के लिए करें कि कुंजी का " -"फिंगरप्रिंट मेल खाता है या नहीं. उदाहरण के लिए:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "परिचय" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "फेडोरा परिचय" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "समर्थन" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "मदद पाएँ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "फेडोरा से पूछे" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "शामिल हों" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora में शामिल हों" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr " फेडोरा ग्रह" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "फेडोरा SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "फेडोरा खाता प्रणाली" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "फेडोरा समुदाय" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "फेडोरा Red Hat के द्वारा प्रायोजित है." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ठीक है" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/hr.po b/getfedora.org/po/hr.po deleted file mode 100644 index aab2cad..0000000 --- a/getfedora.org/po/hr.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Croatian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/hu.po b/getfedora.org/po/hu.po deleted file mode 100644 index 2291965..0000000 --- a/getfedora.org/po/hu.po +++ /dev/null @@ -1,2854 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Zoltan Hoppár , 2014 -# Meskó Balázs , 2016. #zanata -# Meskó Balázs , 2017. #zanata -# Meskó Balázs , 2018. #zanata -# Teknős Ferenc , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-12 07:01-0400\n" -"Last-Translator: Teknős Ferenc \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" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora magatartási kódex" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora magatartási kódex" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Viselkedjen úgy mint a közösség tagja, kövesse a magatartási kódexet." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Magatartási kódex" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"A Fedora közösség szakemberekből és önkéntesekből áll, a világ minden " -"részéről, a disztribúció minden vonatkozásán dolgoznak, a kódolástól a " -"marketingig. A sokszínűség az egyik nagy erősségünk, de ez kommunikációs " -"gondokhoz és boldogtalansághoz is vezethet. Ezért lefektettünk néhány " -"alapszabályt, amelyhez tartaniuk kell magukat azoknak, akik a projekt " -"erőforrásain dolgoznak." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Ez nem egy kimerítő lista arról, hogy mit nem tehet meg. Inkább fogadja be a" -" szándékot – ez egy útmutató ahhoz, hogy könnyebben legyünk kiválóak." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Legyen tapintatos. A munkáját más emberek fogják használni, és cserébe Ön is" -" mások munkájára fog támaszkodni. Minden döntés amit hoz, hatással lesz a " -"felhasználókra és a kollégákra, ezért a döntéshozáskor figyelembe kell " -"vennie a következményeket." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Legyen tiszteletteljes. Nem mindig értünk egyet, de az egyet nem értés nem " -"kifogás a rossz viselkedésre és a rossz modorra. Időnként mind " -"tapasztalhatunk némi frusztrációt, de nem engedhetjük hogy ez a frusztráció " -"személyes támadássá váljon. Fontos megjegyezni, hogy egy közösség, ahol az " -"emberek kellemetlenül vagy fenyegetve érzik magukat, az nem produktív. A " -"Fedora közösség tagjainak tisztelettudóknak kell lenniük, ha más " -"közreműködőkkel, a Fedora közösségen kívüli emberekkel vagy a Fedora " -"felhasználókkal foglalkoznak." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Amikor nem értünk egyet, próbáljuk meg megérteni miért nem. Nézeteltérések, " -"legyen az közösségi vagy műszaki, mindig vannak, és a Fedora közösség sem " -"kivétel. Fontos hogy konstruktívan oldjuk fel az ellentéteket, és a " -"különböző nézeteket." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Ne felejtse el, hogy különbözőek vagyunk. A Fedora ereje a változatos " -"közösségben rejlik, a különböző hátterű emberekben. Különböző emberek más és" -" más szemléletük van a dolgokban. Az hogy nem érti valakinek miért az az " -"álláspontja, az még nem jelenti azt, hogy tévedne. Ne felejtse, hogy az " -"emberek hibáznak, és egymás okolása nem vezet sehová, inkább ajánlja fel " -"segítségét a probléma megoldásában, és segítsen tanulni a hibákból." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Szerezze be a Fedorát: töltse le a Linux-alapú operációs rendszerünket " -"fejlesztői munkaállomásokra, futtasson konténereket, és még sok egyebet" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Válassza a szabadságot. Válassza a Fedorát." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Kevesebb beállítás, több innováció. Válasszon egy Fedora változatot,

ami a leginkább megfelel az igényeinek, és fogjon azonnal munkához." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"A Fedora %(rel)s %(state)s elérhető! Tesztelje a Letöltés " -"szekcióban." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "A Fedora %(rel)s elérhető! Szerezze be most." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Letöltés most" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"A Fedora Workstation egy kiforrott, könnyen használható operációs rendszer " -"asztali gépek és laptopok számára, amely teljes eszközkészletet nyújt " -"fejlesztők és mindenféle alkotók számára." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Letöltés most" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"A Fedora Server egy hatékony, rugalmas operációs rendszer, ami tartalmazza " -"a legjobb és a legújabb adatközpont technológiákat. A kezébe adja a teljes " -"infrastruktúra, és a szolgáltatások irányítását." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"A Fedora Atomic biztosítja a legjobb platformot a Linux-Docker-Kubernetes " -"(LDK) alkalmazáscsomaghoz." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"A Fedora mindig, mindenki számára szabadon használható, módosítható és " -"terjeszthető. Olyan emberek készítik és használják szerte a világon, akik " -"együtt dolgoznak egy közösségként: ez a Fedora projekt." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "További Fedora lehetőségeket szeretne?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"A Fedora közösség ARM " -"lemezképeket, alternatív Spineket, és más, egyedi követelményekhez " -"szabott Fedora változatokat is kiad. Keresse fel a Fedora Spins vagy a Fedora Labs weboldalt." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Legyen kapcsolatban és tájékozódjon." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Szeretne bekapcsolódni? " -"Nyomon követné, hogy mi történik a közösségben? Olvassa el" -" a legújabb híreket és érdekességeket a Fedora Magazine oldalán." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Olvassa el a dokumentációt." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"A jelenlegi kiadással kapcsolatos bővebb információkért olvassa el a kiadási" -" megjegyzéseket. Ha szeretne többet tudni a Fedora használatáról, és olyan " -"részletekről, mint például a rendszerkövetelmények, olvassa el a hivatalos dokumentációt." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Kérjen segítséget." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Segítségre van szüksége a Fedorához? Keresse fel az Ask " -"Fedora oldalt, ahol elolvashatja a többi felhasználó kérdéseinek " -"archívumát, vagy felteheti a saját kérdéseit." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora támogatók" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"A Fedora Projekt büszke arra, hogy a következő szervezetek támogatják…" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Főtámogató" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"A Red Hat, Inc. a Fedora Projekt főtámogatója. A Red Hat " -"a Fedora Projektet elég széles körben támogatja, beleértve a teljes " -"munkaidőben történő alkalmazotti támogatást, az infrastruktúra hardverét és " -"a sávszélességet, események finanszírozását, és a jogi tanácsadást." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"A Fedora Projekt szintén hálás a következő szponzoroknak a jelentős " -"támogatásért:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Támogatná a Fedorát?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Írjon az admin@fedoraproject.org e-mail címre " -"vagy az irc.freenode.net oldalon lévő #fedora-" -"admin csatornára." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Ellenőrizze a letöltött lemezképet" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Ellenőrzőösszeg és ellenőrzési instrukciók" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Hogyan ellenőrizhetem a lemezképem?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Ha letöltött egy lemezképet, akkor érdemes azt az épsége és biztonsága miatt" -" ellenőriznie. Az ellenőrzéshez töltse le a megfelelő CHECKSUM fájlt " -"ugyanabba a mappába, ahová a lemezképet letöltötte." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "64 bites lemezképek" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "32 bites lemezképek" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Atomic WS-hez" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Atomic Host Iso-khoz" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Atomic Host lemezképekhez" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "A konténerhez" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Ezután importálja a Fedorához tartozó GPG kulcso(ka)t:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "A GPG kulcs(ok) részleteit itt ellenőrizheti." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Most ellenőrizzük, hogy a CHECKSUM fájl érvényes:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"A CHECKSUM fájlnak rendelkeznie kell egy jó aláírással a következő kulcsok " -"valamelyikével:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 másodlagos architektúrák (AArch64, PPC64, PPC64le, s390 és s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Végül, miután a CHECKSUM fájlt ellenőriztük, megnézzük, hogy az ISO " -"ellenőrző összeg egyezik-e:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "Ha a kimenet szerint a fájl érvényes, akkor már használhatja is!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Hogyan ellenőrizhetem a letöltött lemezképeket egy másik operációs " -"rendszeren?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Olvassa el az utasításokat, hogy ellenőrizze a lemezképet." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Szerezze be a Fedora Atomicot: a legjobb platformot a konténerizált " -"alkalmazásaihoz" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Konténeres alkalmazások telepítése és méretezése egy megváltoztathatatlan " -"infrastruktúrán." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Letöltés vagy indítás nyilvános felhőben" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"„A Fedora Atomicot választottuk alapként a Navops Launch-hoz – a Kubernetes " -"klasztermenedzsment megoldásunkhoz, mert az ügyfeleink megbíznak a Red Hat " -"operációs rendszereiben, és azokat is futtatják. Imádjuk a Fedora Atomic " -"módosíthatatlanságát, amely tökéletes a konténerizált környezetekhez.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Vezető architekt, Navops az Univától" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Az Atomic Projekt által készített Atomic Host egy pehelysúlyú, " -"módosíthatatlan platform, amelynek egyetlen tervezett célja a konténerizált " -"alkalmazások futtatása." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"A Fedora Atomic Host verziója ugyanazokat a tárolókat használja, mint a " -"Fedora Server, és az Atomic legfrissebb kiadását biztosítja." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree frissítések" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Frissítse atomilag a rendszerét a legfrissebb OStree alapján. Tegye a " -"kiszolgálóit egyformává, és görgessen vissza könnyedén, ha frissítési " -"probléma van." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Kezeljen Docker konténereket, rendszer konténereket, Atomic appokat, és " -"másokat, egyetlen kényelmes parancssoros eszközzel." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Kubernetesre és OpenShiftre optimalizálva" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Kubernetes vagy Origin klasztert épít, hogy konténerizált alkalmazásokat " -"futtasson? Futtassa Fedora Atomicon, amely azt a platformot nyújtja, amire " -"szüksége van, egy kisebb, vékonyabb OS-en." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Készen áll a Fedora Atomic kipróbálására?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Fedora Atomic Host letöltése" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Köszönjük hogy letölti a Fedorát!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"A letöltése néhány másodpercen belül megindul. Ha mégsem, akkor kattintson a" -" lenti hivatkozásra:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Ellenőrizze a letöltését!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Ha letöltött egy lemezképet, akkor érdemes azt az épsége és biztonsága miatt" -" ellenőriznie. Az ellenőrzéshez töltse le a megfelelő CHECKSUM fájlt " -"ugyanabba a mappába, ahová a lemezképet letöltötte, és kövesse ezeket az utasításokat." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Ellenőrizze!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Fedora Atomic letöltése" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Fedora %(rel)s Atomic Host letöltése" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Az Atomic Host nagyjából kéthetente készül." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"A legutóbbi két hétben nem teljesültek a tesztelési feltételek. Az elérhető " -"lemezképek %(atomic_age)s nappal ezelőttiek. További információkért és " -"hírekért az Atomic blokkoló hibáiról, nézze meg a Project Atomic blogot." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Ezek a legutóbbi hivatalos Fedora Atomic Host lemezképek, amelyek " -"%(atomic_age)s napja készültek." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host lemezképek" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"A Fedora Atomic Host egy élenjáró alap operációs rendszer, amely a Project " -"Atomic modelljét követi. A Kubernetes és a konténerek köré lett tervezve. Az" -" itt közzétett lemezképek ezt a munkát mutatják. Megjegyezzük, hogy az itt " -"lévő lemezképek néhány szintű automatizált tesztelésen estek át." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -" Teszteljen mielőtt élesben használja az új verziókat. Ha " -"problémát fedez fel, akkor az Atomic Host eszközei könnyűvé teszik a " -"visszaváltás egy régebbi kiadásra – és ha ez történik, akkor segítsen nekünk" -" a hibák jelentésével vagy javítások küldésével." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"A Fedora Atomic Host lemezképek durván kéthetente " -"frissülnek, a fő Fedora kiadást jellemző hat hónap helyett. Mivel " -"a fejlesztés gyorsan halad, ezért csak a legfrissebb fő Fedora kiadás " -"támogatott." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Megjegyezzük, hogy a különböző Fedora Atomic Host mediák különböző " -"szintű automatizált tesztelést kaptak. Többet tudhat meg az Atomic " -"projekről a projectatomic.io oldalon. Kattintson ide a jelenlegi tesztelési állapot " -"megtekintéséhez." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host lemezképek az Amazon Public Cloud EC2-höz" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"A lenti hivatkozások régiónként listázzák az elérhető Atomic Host hardveres " -"virtuális gép (HVM) AMI-kat, olyan gombokkal, amelyek elindítják őket az " -"Amazon Web Services fiókjában. Az AWS konzolban vagy parancssoros " -"eszközökben is használható AMI azonosítók is meg vannak adva." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 formátum" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"A GP2-es formátumú AMI gyorsabb SSD tárolót használ; akkor használja ezt, ha" -" nagyobb sebességre van szüksége, viszont a tárolási költségei így " -"magasabbak lesznek." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI-k" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Bezárás" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI-k" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Régió" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Indítás" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "szabványos formátum)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"A szabványos formátumú AMI megfelelőbb, ha ritkán hozzáfért adatai vannak, " -"és szeretné a tárolási költségeket alacsonyan tartani." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Szabványos HVM AMI-k" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s szabványos Atomic Host HVM AMI-k" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Szabványos formátum" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host lemezképek a Vagranthoz" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"A Fedora Atomic Host Vagrant gépek VirtualBox és Libvirt szolgáltatókhoz " -"érhetőek el. Egy Fedora Atomic Host gépet elindíthat a lemezképek " -"letöltésével a Fedorától, vagy a vagrant eszközök használatával lehúzhatja a" -" lemezképeket a HashiCorp Vagrant Cloud szolgáltatásából." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Vagrant letöltések megtekintése" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant lemezkép letöltések" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Ezek a lemezképek Vagrant gépek, Vagranttal történő " -"használathoz." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox lemezkép" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Ha a Vagrantot Mac OS X-en vagy Windowson használja, akkor nagy " -"valószínűséggel ezt a lemezképet szeretné használni." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Letöltés" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64 bites, %s MB-os VirtualBox alap Vagrant lemezkép" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM lemezkép" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Ha a Vagrantot Fedorán használja, akkor használja ezt a lemezképet." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64 bites, %s MB-os libvirt/KVM alap Vagrant lemezkép" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Letöltések megtekintése a Vagrant eszközeivel" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Vagrant letöltések a Vagrant eszközeivel" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"A következő parancsok egyikét használhatja a Vagrant gép lemezképek " -"letöltésére a HashiCorp Atlas szolgáltatásából." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Ha már előzőleg futtata a Fedora %(rel)s Atomic Hostot a Vagrantban a " -"számítógépén, akkor ezt futtatva megkaphatja a legfrissebb verziót:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"További információkért a Vagrant futtatásáról Fedora Workstationön, lásd a " -"wiki oldalunkat." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host lemezképek felhős környezetekhez" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 lemezkép" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Ez a Fedora %(rel)s Cloud Atomic Host Qcow2-típusúra formázott lemezképe, " -"OpenStackkel való használathoz." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64 bites, %s MB-os Qcow2 lemezkép" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Nyers lemezkép" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Ez a Fedora %(rel)s Cloud Atomic Host tömörített nyers lemezképformátumban. " -"Ha bizonytalan, hogy mit használjon, próbálja ki ezt." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64 bites, %s MB-os xz-tömörített nyers lemezkép" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Egyéb letöltések" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO lemezkép (%s MB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Konténer lemezkép (%s MB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Próbáljon ki egy kiadás előtt verziót" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "A következő kiadáson dolgozunk." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Segítsen befejezni az F%(rel)s kiadást!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "F%(rel)s %(state)s lemezképek letöltése" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Hogyan tesztelje a kiadás előtti verziókat" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Erőforrások" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Első lépések" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr " Dokumentáció az Project Atomic / Atomic Host első használatához." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Levelezőlista" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Csatlakozzon az upstream levelezőlistához itt: atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC csevegés" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Csatlakozzon a Project Atomic IRC csatornához: #atomic " -"az irc.freenode.org oldalon." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Ellenőrzés" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Lemezkép ellenőrzése" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Fedora %(rel)s %(state)s Atomic Host letöltése" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Ezek a legutóbbi Fedora Atomic Host lemezképek, amelyek ekkor készültek: " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ez egy kiadás előtti szoftver, amit az Atomic " -"munkacsoport támogat. Kérdéseit a levezelőlistájukon vagy a freenode-on lévő " -"%(team_irc)s IRC csatornán tegye fel." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Az összes problémát, illetve hibát a Red Hat Bugzilla " -"rendszeren keresztül kell bejelenteni. A Fedora Projekt nem garantálja a " -"szoftver alkalmasságát, illetve hasznosságát." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMI-k" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s szabványos Atomic Host HVM AMI-k" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"A Fedora Atomic Host Vagrant gépek VirtualBox és Libvirt szolgáltatókhoz " -"érhetőek el. Egy Fedora Atomic Host gépet elindíthat a lemezképek " -"letöltésével a Fedorától, vagy a vagrant eszközök használatával lehúzhatja a" -" lemezképeket a HashiCorp Atlas szolgáltatásából." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Ez a Fedora %(rel)s %(state)s Cloud Atomic Host Qcow2-típusúra formázott " -"lemezképe, OpenStackkel való használathoz." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Ez a Fedora %(rel)s %(state)s Cloud Atomic Host tömörített nyers " -"lemezképformátumban. Ha bizonytalan, hogy mit használjon, próbálja ki ezt." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Projekt – Az oldal nem található" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Az oldal nem található" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Elnézést kérünk, de a fájl vagy a keresett oldal nem található." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Hibaelhárítási ötletek" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Ellenőrizze az URL-t még egyszer, ha kézzel adta meg. Helyesen másolta be?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Egy rossz hivatkozás juttatta ide? Lépjen kapcsolatba a " -"webmesterrel és tudassa, hogy mely hivatkozás hozta ide!" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"A keresett oldal vagy fájl elköltözhetett. Ellenőrizze a főoldalt, vagy keressen a wiki" -" oldalakon." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Csomagaláíró kulcsok" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Ez az oldal sorolja fel a Fedora csomagok aláírására használt GPG kulcsokat." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Tudja meg, hogy a Fedora hogyan gondoskodik a védelméről." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora GPG aláírásokat alkalmaz a csomagjainál, hogy az integritásukat " -"megőrizze." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Olvassa el a GYIK-ot és tudjon meg többet »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Jelenleg használt kulcsok" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Elsődleges" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Másodlagos" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Elavult kulcsokat keres?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Elavult csomagaláíró kulcsok" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Ez az oldal sorolja fel a publikus használaton kívüli Fedora csomagoknál " -"használt aláíró kulcsokat." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Elavult és nem használt kulcsok" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG kulcs" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"A csomagok ezen a médián ezzel a kulccsal vannak aláírva. A releváns dnf " -"tárolók a következők: fedora, fedora-" -"updates Fedora 7-9 verzióihoz, és core valamint " -"core-updates a Fedora Core (6-os és korábbiaknál). Tekintse" -" meg http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html ezt az oldalt a további " -"információkért, hogy ezek a kulcsok miért elavultak." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 teszt" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora teszt" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Ha részt vesz a csomagok tesztelésében, ezt a kulcsot fogja használni a " -"tesztcsomagok ellenőrzéséhez. Ez a kulcs írja alá a csomagokat, amelyek a " -"fedora-testing tárolóban vannak. További tudnivalókért, " -"hogy ez a kulcs miért avult el, lásd: http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 teszt" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 teszt" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora extrák" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Ha a Fedora extrákat Fedora Core 6-tal használja, akkor ez a csomag az " -"extras tárolóban van. Ez a kulcs nem lesz használatban a " -"Fedora Core 6 és az extrák életciklusának vége (2007. december 7.) után. Ezt" -" a kulcsot nem fogják tartalmazni a fedora-release csomagok" -" a Fedora 7 és későbbi változataiban." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy (örökölt)" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Ezt a kulcsot használták a Fedora Legacy által kiadott csomagokban, hogy " -"frissítsék az életciklusok végét hivatalosan elérő kiadásokat. A Fedora " -"Legacy projekt már nem létezik, így ezt a kulcsot már nem használjuk " -"csomagok aláírására. Ez a kulcs nem szerepel a fedora-" -"release csomagban a Fedora 7 és az azt követő kiadásoknál." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Csomag aláírás GYIK" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Tudjon meg többet arról, hogy teszi a GPG aláírás biztonságosabbá a Fedora " -"csomagokat." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"Hogyan használja a Fedora Projekt a GPG kulcsokat a csomagok aláírására?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Minden stabil RPM csomag, amit a Fedora Projekt közzé tesz, GPG-vel aláírt. " -"Alapértelmezésben a dnf, és a grafikus frissítő eszközök ellenőrzik ezeket " -"az aláírásokat, és elutasítják a nem aláírt vagy rossz aláírással rendelkező" -" csomagok telepítését. Mindig ellenőrizni kell a csomagok aláírását " -"telepítés előtt. Ezek az aláírások biztosítják, hogy a telepített csomagokat" -" a Fedora Projekt állította elő, és nem változtatták meg (véletlenül vagy " -"rossz szándékkal) a tükrön vagy webhelyen, amely a csomagot biztosítja." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Azok a csomagok, amelyeket a Koji építő rendszerből lehet letölteni, nem " -"tartalmaznak aláírást, tehát csak óvatosan szabad használni őket. Hasonlóan," -" a Rawhide legfrissebb csomagjai nem feltétlenül rendelkeznek aláírással." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Kulcsok importálása" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"A kulcsokat a fedora-release csomag tartalmazza, illetve a " -"/etc/pki/rpm-gpg mappában találhatók. Kérjük vegye észre, " -"hogy ebben a mappában nem minden kulcsot a Fedora Projekt használ – néhányat" -" Red Hat Enterprise Linux csomagok aláírásaihoz használhatnak, vagy " -"egyáltalán nem használják már. Ha Red Hat Enterprise Linux csomagokat " -"használ, nézze meg a https://www.redhat.com/security/team/key mappát. A Fedora " -"által használt kulcsokat engedélyezték a dnf tároló beállításában, tehát " -"általában nem kell kézzel beimportálni őket az rpm adatbázisba." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"A fedora-release csomag és e webhely mellett letöltheti a Fedora kulcsokat " -"egy nyilvános kulcskiszolgálóról is, például a keys.gnupg.net helyről." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Néhány tárolóhoz, mint a stabil és teszt csomagok tárolói alapértelmezésben," -" a dnf meg tudja találni a megfelelő kulcsot, és rákérdez " -"hogy importálja-e, ha az még nincs benne az rpm adatbázisban." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Bármikor importálhat kulcsot az RPM adatbázisába kézzel, a következő " -"parancsot használva:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "További tájékoztatás az rpm kézikönyvben." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Ha ellenőrizni akarja, hogy a telepített kulcsok megegyeznek-e az itt " -"felsoroltakkal, importálhatja a kulcsot a GnuPG kulcstartójába, és " -"ellenőrizheti, hogy egyezik-e a kulcs ujjlenyomata. Például:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Szerezze be a Fedora Servert: a legújabb technológiával az alkalmazásaihoz " -"és szolgáltatásaihoz" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Futtassa az alkalmazásait egy Linux szerver operációs rendszeren, a " -"legfrissebb nyílt forráskódú technológiával." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Most több különböző verzióval, független életciklusokkal – így a " -"kiszolgálója gyorsan és lassan is haladhat." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"A Fedora Server egy rövid életciklusú, közösségi támogatású kiszolgáló " -"operációs rendszer, amely lehetővé teszi, hogy bármilyen rendszerben " -"tapasztalt rendszergazdák kihasználják a legfrissebb kiszolgáló-alapú " -"technológiákat, amelyek elérhetőek a nyílt forráskódú közösségben." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "A modularitás bemutatkozása" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"A modularitás új moduláris tárolót hoz, amely további szoftververziókat " -"biztosít, független életciklusokkal." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Válassza ki a megfelelő alkalmazást vagy nyelvi szoftverkészletet, amelyre " -"szüksége van, és tartsa meg akkor is, ha újabb verzióra frissíti az " -"operációs rendszert." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Tudjon meg többet a modularitásról" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Könnyű adminisztráció" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Kezelje rendszerét egyszerűen a Cockpit hatékony, modern kezelőfelületével. " -"Kövesse és monitorozza a rendszer teljesítményét és állapotát, telepítse és " -"kezelje a konténer-alapú szolgáltatásokat." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Adatbázis szolgáltatások" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"A Fedora Server egy vállalati szintű, skálázható, a nyílt forrású PostgreSQL" -" projektre épülő adatbázis-kiszolgálóval érkezik." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Teljes vállalati tartomány megoldás" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Lépjen szintet a linuxos hálózata a fejlett személyazonosság-kezeléssel, " -"DNS-sel, tanúsítványkiszolgálókkal, Windows(TM) tartomány integrációval az " -"egész környezetében, a FreeIPA-val, a nyílt forráskódú tartományvezérlővel." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"„A DevConf US-re szükségem volt egy rendszerre, amely a konferenciát kezeli." -" Felfedeztem a regcfg-t, amit Patrick Uiterwijk írt, amely megfelelt az " -"igényeimnek. Viszont nem futtatja a nodejs 8-az az F27-en. Az F28-at " -"elindítva, és a „nodejs:6” csatornát választva viszont varázsütésre " -"működött.”" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "A DevConf US konferencia társelnöke" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Készen áll a Fedora Server kipróbálására?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Fedora Server letöltése" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Fedora %(rel)s Server letöltése" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64 bites, %s GB-os telepítő lemezkép" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"A Fedora Server telepítő lemezkép lehetővé teszi, hogy olyan médiát " -"készítsen a gépe számára, ami azonnal indítja a telepítőt, és így " -"közvetlenül telepítheti a Fedora Servert a merevlemezére" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"A lemezkép használatához szüksége lesz egy olyan meghajtóra, amivel DVD-t " -"tud írni, vagy egy USB meghajtóra, ami legalább akkora mint a lemezkép maga." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Ha szeretné kipróbálni a Fedora Server új moduláris funkcióit, keresse fel a" -" Modulok használata szakaszát a Modularitás " -"dokumentációjának. Ha több információt akar kapni a Modularitásról " -"általánosságban, nézze meg a pagure weboldalt." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Hálózati telepítő lemezkép:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64 bites, %s MB-os lemezkép" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr " F%(rel)s Alfa lemezképfájlok letöltése" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Béta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr " F%(rel)s Béta lemezképfájlok letöltése" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Még több Fedora beszerzése" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® technológia" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Hogyan változtathatom a Live lemezképet bootolható médiává?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Miután letöltötte a lemezképet, készíteni fog egy indítható médiát belőle. " -"Vagy írja ki egy üres DVD-lemezre, vagy írja ki a lemezképet egy USB flash meghajtóra." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Hogyan indítom el a médiáról?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Kövesse a számítógépének dokumentációját a beépített merevlemeztől eltérő " -"eszközről történő indításáról. A folyamat eltérő lehet a számítógép " -"gyártójának és modelljének függvényében. Lehet, hogy hasznosnak találhatja " -"ezeket a gyakori tippeket." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Fedora %s Server letöltése" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Fedora %(rel)s %(state)s Server letöltése" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64 bites, %s GB-os telepítő lemezkép" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ez egy kiadás előtti szoftver, amit a Server " -"munkacsoport támogat. Kérdéseit a levezelőlistájukon vagy a freenode-on lévő " -"%(team_irc)s IRC csatornán tegye fel." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Olvassa el a kiadási megjegyzéseket a " -"változtatásokkal és az új funkciókkal kapcsolatos további információkért, " -"valamint a gyakori hibák listáját a " -"gyakran előforduló hibákkal, és azok elkerülésével kapcsolatos " -"információkért." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Mikor kerül kiadásra a Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Olvassa el a kiadási ütemterv főbb mérföldköveit…" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Ha letöltött egy lemezképet, akkor érdemes azt az épsége és biztonsága miatt" -" ellenőriznie. Az ellenőrzéshez töltse le a CHECKSUM fájlt ugyanabba a " -"mappába, ahová a lemezképet letöltötte, és kövesse ezeket az utasításokat." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Szerezze be a Fedora Workstationt: a szoftverfejlesztők számára legjobb " -"asztali operációs rendszert" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Ez az a Linux munkaállomás, amire várt." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"A Fedora Workstation egy megbízható, felhasználóbarát és hatékony operációs " -"rendszer a laptopjára vagy asztali gépére. Széles körben támogatja a " -"fejlesztőket: a hobbi fejlesztőktől és a diákoktól kezdve, egészen a céges " -"környezetekben dolgozó szakemberekig." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"„A Fedora által biztosított eszközök
sokasága lehetővé teszi, hogyelvégezzem a munkámat.
Egyszerűen csak működik.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM teljesítmény mérnök" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Elegáns felhasználói felület" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Koncentráljon a kódjára a GNOME 3 asztali környezetben. A GNOME fejlesztői " -"visszajelzésekkel készül, és csökkenti a zavaró tényezőket, így arra " -"koncentrálhat ami fontos." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Teljesen nyílt forráskódú eszköztár" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Hagyja ki a munkához szükséges eszközök keresését vagy elkészítését. A " -"Fedora által biztosított nyílt forráskódú nyelvekkel, eszközökkel és " -"alkalmazásokkal minden csak egy kattintásnyira vagy egy parancsra van. " -"Helyet adunk a projektjeinek, és olyan tárolót biztosítunk, mint a COPR, " -"hogy a kódjai és lefordított alkalmazásai gyorsan elérhetőek legyenek a " -"közösség számára." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Gépek és egyéb virtualizációs eszközök" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Üzemeljen be virtuális gépeket a GNOME Gépek segítségével, hogy több " -"platformon is tesztelje a kódját. Vagy ássa bele magát a komoly, " -"szkriptelhető virtualizációs eszközökbe, a még komolyabb irányításért." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Beépített Docker támogatás" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Konténerezze be az alkalmazásait, vagy telepítsen konténerezett " -"alkalmazásokat közvetlenül Fedora rendszerén, a legújabb Docker " -"technológiával." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Készen áll a Fedora Workstation kipróbálására?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Fedora Workstation letöltése" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Fedora %(rel)s Workstation letöltése" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB méretű Fedora médiaíró Mac OS X-re" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64 bites, %s GB méretű ISO Linuxhoz" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"A letöltés csak új telepítések esetén szükséges.A frissítéshez, kövesse az alábbi utasításokat." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB méretű Fedora médiaíró Windowsra" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Töltse le a Fedora médiaírót az operációs rendszerére." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Útmutatóra vagy egy másik verzióra van szüksége?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Fedora Workstation futtatása" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "A Fedora Workstation futtatásához ezekre lesz szüksége:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora médiaíró (letöltés fent)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Egy USB flash meghajtó legalább %s GB szabad hellyel" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Ha szeretné, akkor telepítheti a Fedora Workstation a laptopra vagy asztali " -"számítógépre, ha legalább 1 GHz-es processzora, 1 GB RAM-ja, és 10 GB szabad" -" tárhelye van. Ehhez futtassa a Fedora Workstation Live verzióját az USB " -"meghajtójáról azon a gépen, amelyre telepíteni szeretné, és futtassa a " -"Fedora telepítőjét az asztalról." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Támogatott platformok" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "A Fedora médiaíró az alábbi platformokat támogatja:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Azt észleltük, hogy Max OS X-t futtat, és ezt a verziót " -"kínáltuk letöltésre. Ha rosszul észleltük az operációs rendszerét, vagy egy " -"másik verziók kíván letölteni, akkor kattintson alább az „Összes platform " -"letöltéseinek megjelenítése” gombra." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Azt észleltük, hogy Linuxot futtat, és ezt a verziót " -"kínáltuk letöltésre. Ha rosszul észleltük az operációs rendszerét, vagy egy " -"másik verziók kíván letölteni, akkor kattintson alább az „Összes platform " -"letöltéseinek megjelenítése” gombra." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Azt észleltük, hogy Windowst futtat, és ezt a verziót " -"kínáltuk letöltésre. Ha rosszul észleltük az operációs rendszerét, vagy egy " -"másik verziók kíván letölteni, akkor kattintson alább az „Összes platform " -"letöltéseinek megjelenítése” gombra." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Minden platform letöltéseinek megtekintése" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Elérhető a DNF-fel a Fedorához" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "További részletek" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Hogyan használjam ezt az ISO-t?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Lemezkép ellenőrzése" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64 bites, %s GB méretű Live lemezkép" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32 bites %s GB-os Live lemezkép" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall lemezképek:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32 bites, %s MB-os lemezkép" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Próbálja ki az Atomic Workstationt" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Az Atomic módosíthatatlan OS lemezképet biztosít, és hozzá frissítéseket az " -"OSTree segítségével." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64 bites, %s GB-os Atomic lemezkép" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Tudjon meg többet" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Kiadási bejelentés" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Olvassa el a teljes Kiadási bejelentést a Fedora Magazine-ban." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Kiadási megjegyzések" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Ismerje meg a változásokat a legutóbbi Fedora kiadás óta, valamint a " -"minimális követelményeket és ajánlásokat a Fedora futtatásához." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Telepítési útmutató" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Javasoljuk, hogy nézze át ezt a rendszer telepítése előtt, mivel számos " -"gyakori kérdésre választ ad." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Gyakori hibák" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Egy kiváló dokumentum, amely segítséget nyújthat, ha problémái akadnak a " -"Fedora telepítése vagy használata közben." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Mit jelent az, hogy „Live”?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"A Fedora médaíró egy teljes, futó Fedora Workstationt fog készíteni, amit " -"azonnal futtathat az USB meghajtóról. Használhatja a Live lemezképet hogy " -"kipróbálja a Fedorát, mielőtt módosításokat végezne a merevlemezén." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Ha készen áll, akkor telepítheti a Fedorát a merevlemezére a Fedora " -"Workstation „Live” verziójából." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spinek" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Fedora Workstation %s letöltése" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Fedora %(rel)s %(state)s Workstation letöltése" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Frissítés DNF-en keresztül,ha már Fedorán van ." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ez egy kiadás előtti szoftver, amit a Workstation " -"munkacsoport támogat. Kérdéseit a levelező " -"listájukon vagy a freenode-on lévő %(team_irc)s IRC csatornán tegye fel." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "A Fedora Workstation előzetes kiadásainak futtatása" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"A Fedora Workstation kiadás előtti verziójának futtatásához ezekre lesz " -"szüksége:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora médiaíró (letöltés fent)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Egy Live ISO lemezkép a Fedora kiadás előtti " -"változatához, amelyet futtatni szeretne" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"FIGYELMEZTETÉS: Ez a folyamat elpusztít minden adatot az USB médián. " -"Készítsen másolatot minden fontos fájlról az USB médiáról, mielőtt ezt " -"megteszi." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Töltse le a Fedora médiaírót lent." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Töltse le a kívánt ISO lemezképet." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Nyissa meg a Fedora médiaíró alkalmazást. Lehet hogy meg kell adnia a " -"jelszót, hogy megadja az alkalmazásnak a megfelelő engedélyeket." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Válassza ki az „Egyéni OS…” lehetőséget a listából." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Az Egyéni OS oldalon, válassza a „Válasszon egy Live ISO-t” gombot." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"A fájlválasztó ablakban keresse meg, és válassza ki a letöltött ISO " -"lemezképet." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Helyezze be az USB meghajtót a számítógépbe. Ha már előzőleg Live média " -"létrehozására használta, akkor lehet hogy vissza kell állítania a gyári " -"beállításokat. Az alkalmazás meg fogja kérdezni, hogy ezt akarja-e." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Válassza a „Live USB készítése” lehetőséget a lemezkép kiírásához. Várjon " -"amíg a folyamat befejeződik, mielőtt eltávolítja a médiát, és bezárja az " -"alkalmazást." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr " 64 bit ellenőrzése !" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "32 bit ellenőrzése !" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Az előzetes kiadások tesztelésének módja" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Fedora wiki útmutató arról, hogyan segíthet tesztelni a Fedora előzetes " -"kiadású verzióit." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architektúra" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root áruház" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "AMI példány indítása" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Válassza ki a legközelebbi régiót" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 bites (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 bites (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Indítás!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Export szabályozások" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Olvassa el a teljes export szabályzatot" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"A gombra kattintással és a Fedora letöltésével elfogadja a következő " -"feltételeket." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Olvasson tovább >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Névjegy" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "A Fedora névjegye" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Támogatók" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Jogi információk" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora Workstation beszerzése" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora Server beszerzése" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Fedora Atomic beszerzése" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternatív letöltési lehetőségek" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Támogatás" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Segítség" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora – Kérdezz a Fedorától" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Gyakori hibák" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora fejlesztői portál" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Telepítési útmutató" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Csatlakozás" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Csatlakozás a Fedorához" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG-ek" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora fiókrendszer (FAS)" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora közösség" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "A Fedorát a Red Hat támogatja." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Tudjon meg többet a Red Hat és a Fedora kapcsolatáról »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. és mások." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"A megjegyzéseit és javításait a weboldalakért felelős csapatnak küldje el." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Az oldal nyelve:" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Még több \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Letisztult. Hatékony. Minden felhőszolgáltatásra kész." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"A legújabb technológia. Egy stabil alap. Együtt, az alkalmazásaiért és a " -"szolgáltatásaiért." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentáció és egyéb erőforrások" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"A Fedora telepítése előtt érdemes ellenőriznie, hogy a rendszere megfelel-e " -"a Fedora minimális követelményeinek. A minimális követelményekről és " -"ajánlásokról az online kiadási " -"megjegyzéseket elolvasva tájékozódhat." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Teljes telepítési útmutató is elérhető. " -"Javasoljuk, hogy nézze át a rendszer telepítése előtt, mivel számos gyakori " -"kérdésre választ ad." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Más média beszerzési módszerek" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Vásárolhat Fedora telepítési médiát online és helyi viszonteladóktól is." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Nem engedheti meg magának a telepítő média árát? Igényeljen Fedora telepítő " -"médiát a Fedora ingyen média programban." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG kulcs információk" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Kulcsazonosító" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Ujjlenyomat" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Szerezze be innen:" diff --git a/getfedora.org/po/hy.po b/getfedora.org/po/hy.po deleted file mode 100644 index 5bd5238..0000000 --- a/getfedora.org/po/hy.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/fedora-web/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ia.po b/getfedora.org/po/ia.po deleted file mode 100644 index 5df31a6..0000000 --- a/getfedora.org/po/ia.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:25-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Discargar" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Re" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Super Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patronos" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Supporto" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obtener adjuta" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Querer Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Unir se" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Unir se a Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/id.po b/getfedora.org/po/id.po deleted file mode 100644 index 8ba47da..0000000 --- a/getfedora.org/po/id.po +++ /dev/null @@ -1,2565 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Andika Triwidada , 2014 -# ekoikhyar , 2016. #zanata -# Andika Triwidada , 2017. #zanata -# Andika Triwidada , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-02-13 08:28-0500\n" -"Last-Translator: Andika Triwidada \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" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Kode Etik Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Kode Etik Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Berperilakulah sebagai anggota komunitas, ikuti Kode Etik." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Kode Etik" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Komunitas Fedora terbentuk dari gabungan antara profesional dan sukarelawan " -"dari seluruh dunia, bekerja pada setiap aspek distribusi dari pengkodean " -"hingga pemasaran. Keragaman adalah salah satu kekuatan besar kami, tetapi " -"juga dapat menyebabkan masalah komunikasi dan ketidakbahagiaan. Untuk itu, " -"kami memiliki beberapa aturan dasar yang kami minta kepada orang untuk " -"dipatuhi ketika mereka menggunakan sumber daya proyek." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Ini bukanlah daftar lengkap dari hal-hal yang tidak dapat Anda lakukan. " -"Sebaliknya, jadikanlah ini semangat yang dimaksudkan - panduan untuk membuat" -" lebih mudah menjadi sempurna satu sama lain." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Bertenggang rasa. Karya Anda akan digunakan oleh orang lain, dan Anda pada " -"gilirannya akan tergantung pada pekerjaan orang lain. Setiap keputusan yang " -"Anda ambil akan mempengaruhi pengguna dan rekan, dan Anda harus " -"memperhitungkan konsekuensi-konsekuensi tersebut ketika membuat keputusan." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Menghormati. Tidak semua dari kita akan setuju setiap saat, tetapi " -"ketidakkesepakatan bukanlah alasan untuk berperilaku buruk dan perilaku yang" -" tidak sopan. Kita semua mungkin mengalami frustrasi sekarang dan saat lain," -" tapi kita tidak bisa membiarkan frustrasi tersebut berubah menjadi serangan" -" atas pribadi. Penting untuk diingat bahwa sebuah komunitas di mana orang " -"merasa tidak nyaman atau terancam tidaklah produktif. Anggota komunitas " -"Fedora harus saling menghormati ketika berhadapan dengan kontributor lainnya" -" maupun dengan orang-orang di luar komunitas Fedora dan dengan para pengguna" -" Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Ketika kita tidak setuju, kita mencoba untuk memahami mengapa. Perbedaan " -"pendapat, baik sosial dan teknis, terjadi sepanjang waktu dan Fedora tidak " -"terkecuali. Penting bahwa kita mengatasi perbedaan pendapat dan pandangan " -"berbeda secara konstruktif. " - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Ingat bahwa kita berbeda. Kekuatan Fedora berasal dari variasi komunitas, " -"orang-orang dari berbagai latar belakang yang jauh berbeda. Lain orang akan " -"memiliki perspektif yang berbeda tentang isu-isu. Karena tidak bisa memahami" -" mengapa seseorang mempertahankan suatu sudut pandang tidak berarti bahwa " -"mereka salah. Jangan lupa bahwa manusiawi untuk berbuat salah dan " -"menyalahkan satu sama lain tidak membawa kita ke manapun, sebaliknya " -"tawarkan untuk membantu menyelesaikan masalah dan membantu belajar dari " -"kesalahan." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Ambil Fedora: unduh OS berbasis Linux kami untuk desktop pengembang, " -"menjalankan kontainer, dan yang lain" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Pilih Kebebasan. Pilih Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Lebih sedikit setup, lebih banyak inovasi. Pilihan rasa Fedora

" -"disederhanakan untuk kebutuhan Anda, dan segera mulai bekerja." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s dirilis! Ujilah di bagian Unduh." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s dirilis! Dapatkan sekarang." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Unduh Sekarang" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation adalah sistem operasi yang mudah digunakan, terpoles, " -"untuk komputer laptop dan desktop, dengan perkakas yang lengkap untuk para " -"pengembang dan pembuat segala macam." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Unduh sekarang" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server adalah sistem operasi yang fleksibel, ampuh, yang mencakup " -"teknologi datacenter yang terbaik dan terbaru. Ini membuat Anda " -"mengendalikan semua infrastruktur dan layanan Anda." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic memberikan platform terbaik untuk tumpukan aplikasi Linux-" -"Docker-Kubernetes (LDK) Anda." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora akan selalu bebas untuk digunakan, dimodifikasi, dan didistribusi " -"oleh semua orang. Fedora dibangun dan digunakan oleh orang-orang di seluruh " -"dunia yang bekerja bersama sebagai sebuah komunitas: Fedora Project." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Ingin lebih banyak pilihan Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Komunitas Fedora juga merilis ARM" -" image, live Spin alternatif, dan variasi lainya dari Fedora yang " -"disesuaikan dengan kebutuhan spesifik. Telisik mereka pada Fedora Spin atau situsFedora Lab ." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Terhubung & terinformasi." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Ingin bergabung? Cari tahu " -"apa yang terjadi dalam komunitas? Baca berita " -"terbaru dan keren pada Majalah " -"Fedora." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Membaca dokumentasi." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Periksalah Catatan Rilis untuk informasi rinci tentang rilis saat ini. Untuk" -" mempelajari lebih lanjut tentang menggunakan Fedora dan rincian seperti " -"persyaratan sistem, lihat dokumentasi " -"resmi." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Mendapatkan bantuan." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Membutuhkan bantuan atas Fedora? Periksa Ask Fedora, " -"dimana Anda dapat membaca arsip dari pertanyaan para pengguna lain, atau " -"ajukan pertanyaan Anda." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponsor Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Proyek Fedora bangga memiliki organisasi berikut sebagai sponsor ..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Sponsor Utama" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. adalah sponsor utama Proyek Fedora. Red " -"Hat memberikan proyek Fedora berbagai sumber, termasuk dukungan karyawan " -"purnawaktu, perangkat keras infrastruktur dan bandwidth, pendanaan acara, " -"dan nasihat hukum." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Proyek Fedora juga berterima kasih kepada para sponsor berikut untuk " -"memberikan dukungan yang cukup besar:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Berminat untuk mensponsori sesuatu untuk Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Kontak admin@fedoraproject.org atau mampir di " -"#fedora-admin pada irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifikasi Unduhan Image Anda" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM dan Instruksi Verifikasi" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Bagaimana cara memverifikasi image saya?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Setelah Anda mengunduh image, verifikasilah untuk keamanan dan integritas. " -"Untuk menverifikasi image Anda, mulailah dengan mengunduh berkas CHECKSUM " -"yang tepat ke dalam direktori yang sama seperti image yang Anda unduh." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Untuk image 64-bit" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Untuk image 32-bit" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Untuk Iso Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Untuk image Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Kemudian, impor kunci GPG Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Anda dapat memverifikasi detil kunci GPG di sini." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Sekarang, periksa validitas berkas CHECKSUM:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Berkas CHECKSUM harus memiliki tanda tangan yang baik dari salah satu kunci " -"berikut:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 arsitektur sekunder (AArch64, PPC64, PPC64le, s390, dan s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Terakhir, sekarang setelah berkas CHECKSUM diverifikasi, periksalah bahwa " -"checksum image cocok:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "Bila keluaran menyatakan bahwa berkas valid, maka itu siap dipakai!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Bagaimana cara memverifikasi unduhan image saya pada sistem operasi lain?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Ambil Fedora Atomic: platform terbaik untuk stack aplikasi terkontainerisasi" -" Anda" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Gelar dan skalakan aplikasi terwadahi Anda dengan infrastruktur yang kekal." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Unduh atau Luncurkan di Cloud Publik" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"\"Kami memilih memakai Fedora Atomic sebagai basis bagi Navops Launch kami —" -" solusi provisi cluster Kubernetes karena para pelanggan kami mempercayai " -"dan sudah menjalankan sistem operasi Red Hat. Kami cinta aspek immutable " -"dari Fedora Atomic yang sempurna untuk lingkungan terkontainerisasi.\"" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Chief Architect, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Pembaruan OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Dioptimasi untuk Kubernetes dan OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Terima Kasih Sudah Mengunduh Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Unduhan Anda akan dimulai beberapa detik lagi. Jika tidak, klik tautan di " -"bawah:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifikasi Unduhan Anda!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Setelah Anda mengunduh image, verifikasilah untuk keamanan dan integritas. " -"Untuk memverifikasi image Anda, mulailah dengan mengunduh berkas CHECKSUM " -"yang sesuai ke dalam direktori yang sama seperti image yang Anda unduh dan " -"ikuti instruksi ini." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Unduh Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Unduh Host Fedora %(rel)s Atomic" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host dibangun sekitar 2 minggu sekali." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Image Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Image Atomic Host untuk Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Format GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"AMI berformat GP2 memakai penyimpanan SSD yang lebih cepat; gunakan AMI ini " -"untuk kecepatan, walaupun biaya penyimpanan Anda akan lebih dari yang " -"standar." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "AMI HVM GP2" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Tutup" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "AMI HVM Atomic Host Fedora %(rel)s" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Wilayah" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "ID AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Luncurkan" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Format Standar)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"AMI berformat standar lebih cocok bila Anda memiliki data yang jarang " -"diakses dan ingin menekan biaya penyimpanan." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "AMI HVM Standar" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Format Standar" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Image Atomic Host untuk Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Tilik Unduhan Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Unduhan Image Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Image VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Unduh" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Image Vagrant Basis VirtualBox 64-bit %sMB" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Image libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Image Vagrant Basis libvirt/KVM 64-bit %sMB" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Tilik Unduhan memakai perkakas Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Image qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Image Mentah" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Unduhan Lain" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Image ISO Atomic Host (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Sumber Daya" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifikasi" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Halaman Tidak Ditemukan" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Halaman Tidak Ditemukan" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Kami minta maaf, tapi berkas atau halaman yang Anda minta tidak dapat " -"ditemukan." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ide-ide Penelusuran Masalah" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Tolong periksa kembali URL jika Anda memasukkannya secara manual. Apakah " -"Anda menyalinnya dengan benar?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Pranala Buruk? Kontak webmaster dan jelaskan pranalan " -"mana yang membawa Anda ke sini." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Kunci Penandatanganan Paket" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Kunci Yang Sekarang Dipakai" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primer" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekunder" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Kunci GPG Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Warisan" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"Bagaimana Fedora Project menggunakan kunci GPG untuk menandatangani paket-" -"paket?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Mengimpor kunci" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Anda selalu dapat mengimpor kunci ke database RPM menggunakan perintah " -"berikut ini:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Lihat panduan rpm untuk informasi lebih." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Jika Anda ingin memastikan bahwa kunci yang dipasang pada sistem Anda cocok " -"dengan kunci yang terdaftar di sini, Anda dapat menggunakan GnuPG untuk " -"memeriksa apakah sidik jari dari kunci tersebut cocok. Sebagai contoh:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Administrasi Mudah" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Layanan Basis Data" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Unduh Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Unduh Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Image instalasi 64-bit %sGB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Image Netinstall:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Image 64-bit %sMB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Teknologi ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Unduh Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Image Instalasi 64-bit %sGB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Ini adalah workstation Linux yang selama ini Anda nantikan." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Unduh Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Unduh Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Menjalankan Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Platform yang Didukung" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Image Live 64-bit %sGB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Image Live 32-bit %sGB" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Image Netinstall:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Image 32-bit %sMB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spin" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Unduh Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Unduh Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Unduh image ISO yang dikehendaki." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arsitektur" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Luncurkan instance AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Pilih wilayah terdekat" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Luncurkan!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Peraturan Ekspor" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Baca peraturan ekspor yang lengkap" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Baca lebih lanjut >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Tentang" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Tentang Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsor" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Hukum" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Dapatkan Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Dapatkan Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Dapatkan Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Unduhan Alternatif" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Dukungan" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Dapatkan Bantuan" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Bug Umum" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portal Pengembang Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Panduan Instalasi" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Gabung" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Bergabung dengan Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistem Akun Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Komunitas Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora disponsori oleh Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Pelajari lebih lanjut hubungan antara Red Hat dan Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. dan lainnya." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Harap kirim komentar atau koreksi ke tim situs web." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Ubah Bahasa" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Ramping. Ampuh. Siap Everycloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentasi dan sumber daya lain" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Cara lain memperoleh media" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Anda bisa membeli media instalasi untuk Fedora dari vendor " -"daring atau vendor lokal di wilayah Anda." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Tak mampu membeli media instalasi? Mintalah media instalasi Fedora dari Program Media Bebas Fedora." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informasi Kunci GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID Kunci" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Sidik Jari" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Dapatkan dari:" diff --git a/getfedora.org/po/ilo.po b/getfedora.org/po/ilo.po deleted file mode 100644 index df7eae3..0000000 --- a/getfedora.org/po/ilo.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Iloko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ilo\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/is.po b/getfedora.org/po/is.po deleted file mode 100644 index 132adae..0000000 --- a/getfedora.org/po/is.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:24-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Stuðningsaðilar Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Aðalstuðningsaðili" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Sækja" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Hvernig notar Fedora GPG dulritunarlykla til að undirrita pakka?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Reglur varðandi útflutning" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Um Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Stuðningsaðilar" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Aðstoð" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Fá hjálp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Leiðbeiningar fyrir uppsetningu" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Taka þátt" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Taktu þátt í Fedora." - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Fedora plánetan" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Sérsviðahópar Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora aðgangskerfið" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora samfélagið." - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora er stutt af Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Í lagi" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/it.po b/getfedora.org/po/it.po deleted file mode 100644 index fa81f31..0000000 --- a/getfedora.org/po/it.po +++ /dev/null @@ -1,2895 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Andrea Masala , 2014 -# antonio montagnani , 2014 -# Francesco D'Aluisio , 2014 -# Gianluca Sforna , 2014 -# Andrea Masala , 2015. #zanata -# Germano Massullo , 2015. #zanata -# Gianluca Sforna , 2015. #zanata -# Gregorio , 2015. #zanata -# Andrea Masala , 2016. #zanata -# Gianluca Sforna , 2016. #zanata -# Gregorio , 2016. #zanata -# Luca Ciavatta , 2016. #zanata -# Alessio Ciregia , 2017. #zanata -# Andrea Masala , 2017. #zanata -# Gianluca Sforna , 2017. #zanata -# Luca Ciavatta , 2017. #zanata -# Giovanni Grieco , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-04-30 05:49-0400\n" -"Last-Translator: Giovanni Grieco \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" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Codice di condotta Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Codice di condotta Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Comportati come un membro della comunità, segui il codice di condotta" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Codice di condotta" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"La comunità Fedora è composta da professionisti e volontari provenienti da " -"tutto il mondo, che lavorano su tutti gli aspetti della distribuzione dal " -"codice al marketing. La diversità è uno dei nostri punti di forza, ma può " -"anche portare a problemi di comunicazione ed attriti. A tal fine, ci sono " -"alcune regole di base cui le persone devono aderire quando si utilizzano le " -"risorse del progetto." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Questo non è un elenco esaustivo di cose che non si possono fare. Piuttosto," -" va presa con il giusto spirito - una guida che facilita essere eccellenti " -"l'un l'altro." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Siate cortesi. Il vostro lavoro sarà utilizzato da altre persone, e a vostra" -" volta dipenderete dal lavoro di altri. Ogni decisione che prendete avrà " -"effetti su utenti e colleghi, quindi cercate di valutare queste conseguenze " -"ogni volta che prendete una decisione." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Siate rispettosi. Non tutti sono sempre d'accordo, ma il disaccordo non è " -"una scusa per comportamenti sgarbati e cattive maniere. A tutti può capitare" -" di essere frustrati di tanto in tanto, ma non possiamo permettere che " -"questa frustrazione si trasformi in attacchi personali. È importante " -"ricordare che una comunità in cui le persone si sentono minacciate, o " -"comunque non a proprio agio, non è una comunità produttiva. I membri della " -"comunità Fedora devono essere rispettosi quando interagiscono con altri " -"contributori, altri utenti Fedora o con persone al di fuori della comunità " -"Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Quando c'è disaccordo, cerchiamo di capire le motivazioni. I disaccordi, sia" -" tecnici che sociali, accadono continuamente e Fedora non è una eccezione. È" -" importante risolvere i disaccordi e i differenti punti di vista in maniera " -"costruttiva." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Ricordiamo che siamo diversi. La forza di Fedora deriva dalla sua variegata " -"comunità, persone provenienti da ambienti molto diversi. Persone diverse " -"hanno diversi punti di vista sulle questioni. Non essere in grado di capire " -"perchè qualcuno sostiene un certo punto di vista non significa che siano in " -"errore. Non scordiamo che sbagliare è umano, ma darsi la colpa a vicenda non" -" porta da nessuna parte, quindi offriamo il nostro contributo per risolvere " -"le questioni e imparare dagli errori." - -#: data/content/index.html:9 -#, fuzzy -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Ottieni Fedora: scarica il nostro sistema operativo basato su Linux per " -"sviluppare, gestire container e altro" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Scegli la Libertà. Scegli Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Meno setup, più innovazione. Scegli la variante di Fedora

" -"ottimizzata per le tue necessità e inizia immediatamente a lavorare." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s rilasciata! Controlla nella " -"sezione Download." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s rilasciata! Provala ora." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Scarica Ora" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation è un sistema operativo elegante e facile da usare per " -"computer desktop e laptop, con un insieme completo di strumenti per " -"sviluppatori e maker di ogni tipo." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Scarica ora" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server è un sistema operativo potente e flessibile che include le " -"migliori e più recenti tecnologie per il datacenter. Ti consente di " -"controllare tutta la tua infrastruttura e servizi." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic fornisce la migliore piattaforma per il vostro stack di " -"applicazioni Linux-Docker-kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"L'uso, la modifica e la distribuzione di Fedora sono sempre liberi per " -"chiunque. È creata da persone di tutto il mondo che lavorano assieme come " -"una comunità: il Fedora Project." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Vorresti ulteriori opzioni per Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"La comunità di Fedora rilascia anche ARM images, spin live " -"alternative e altre varianti di Fedora adattate a requisiti specifici. " -"L'elenco è disponibile nei siti Fedora Spins o Fedora Labs ." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Rimani connesso e informato." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Vuoi partecipare? Scoprire " -"cosa succede nella comunità? Leggi le " -"ultime notizie sul Fedora " -"Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Leggi la documentazione." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Controllare le Note di Rilascio per informazioni dettagliate sulla release " -"corrente. Per maggiori informazioni sull'utilizzo di Fedora e altri dettagli" -" come i requisiti di sistema, si veda la Documentazione Ufficiale." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Ottieni aiuto." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Serve aiuto con Fedora? Controlla Ask Fedora, dove puoi " -"leggere gli archivi delle domande degli altri utenti o farne una tu." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora sponsor" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Il Fedora Project è orgoglioso di avere le seguenti organizzazioni come " -"sponsor..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Sponsor primario" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. è lo sponsor primario del Fedora Project. " -"Red Hat fornisce al progetto Fedora una grande varietà di risorse, " -"includendo supporto di sviluppo a tempo pieno, hardware per l'infrastruttura" -" e di banda, finanziamento degli eventi e consulenza legale." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Il Fedora Project ringrazia inoltre i seguenti sponsor per l'aiuto " -"sostanziale:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Sei interessato a sponsorizzare qualcosa per Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contatta admin@fedoraproject.org o passa da " -"#fedora-admin su irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifica l'immagine scaricata" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Instruzioni per CHECKSUM e verifica" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Come si verifica una immagine?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Una volta scaricata l'immagine, verificane la sicurezza e l'integrità. Per " -"verificare l'immagine, scarica il file di CHECKSUM appropriato nella stessa " -"directory dell'immagine." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Per le immagini a 64 bit" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Per le immagini a 32 bit" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Per Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Per Iso Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Per immagini Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Quindi, importa la chiave GPG di Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Puoi verificare i dettagli delle chiavi GPG qui." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Ora, verifica che il file CHECKSUM sia valido:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Il file CHECKSUM dovrebbe avere una firma verificata da una delle seguenti " -"chiavi:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 architetture secondarie (AArch64, PPC64, PPC64le, s390 e s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Infine, ora che il file CHECKSUM è stato verificato, controlla che il " -"checksum della immagine coincida:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Se il risultato indica che il file è valido, allora si può utilizzare!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Come verifico le immagini scaricate su un altro sistema operativo?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -#, fuzzy -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Ottieni Fedora Atomic: la miglior piattaforma per le tue applicazioni " -"containerizzati" - -#: data/content/atomic/index.html:18 -#, fuzzy -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Distribuire e scalare le applicazioni container con infrastruttura " -"immutabile." - -#: data/content/atomic/index.html:24 -#, fuzzy -msgid "Download or Launch in Public Cloud" -msgstr "Effettuare il download o eseguire nel Cloud pubblico" - -#: data/content/atomic/index.html:39 -#, fuzzy -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“Abbiamo scelto di utilizzare Fedora Atomic come base per il nostro Navops " -"Launch - soluzione di provisioning su cluster Kubernetes perché i nostri " -"clienti ritengono sicuri e utilizzano già i sistemi operativi Red Hat. Noi " -"amiamo l'aspetto immutabile di Fedora Atomic che è perfetto per gli ambienti" -" a container.”" - -#: data/content/atomic/index.html:40 -#, fuzzy -msgid "Chief Architect, Navops by Univa" -msgstr "Chief Architect, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host da Project Atomic è una piattaforma leggera e immutabile, " -"progettata con l'unico scopo di eseguire applicazioni container." - -#: data/content/atomic/index.html:54 -#, fuzzy -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"La versione Fedora di Atomic Host utilizza gli stessi repository di " -"pacchetti di Fedora Server, e fornisce le ultime versioni di Atomic." - -#: data/content/atomic/index.html:65 -#, fuzzy -msgid "OStree Updates" -msgstr "Aggiornamenti OStree" - -#: data/content/atomic/index.html:66 -#, fuzzy -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Aggiorna automaticamente il tuo sistema all'ultimo OStree. Crea i tuoi " -"server, identici, e torna indietro facilmente se si verifica qualche " -"problema con l'aggiornamento." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Gestisci i container Docker, i system container, le App Atomic e altro " -"ancora usando un'unico e comodo tool a linea di comando." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Ottimizzato per Kubernetes e OpenShift" - -#: data/content/atomic/index.html:84 -#, fuzzy -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Volete creare un cluster Kubernetes od Origin per le tue applicazioni " -"containerizzate? Fatele girare su Fedora Atomic, che vi fornisce la " -"piattaforma di cui avete bisogno su un Sistema Operativo più piccolo e " -"snello." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Siete pronti a provare Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Grazie per aver scaricato Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Il tuo download dovrebbe cominciare tra pochi secondi. Altrimenti, clicca " -"sul link sotto:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifica il tuo download!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Una volta scaricata una immagine, verificala per sicurezza ed integrità. Per" -" verificare l'immagine, scarica il file di CHECKSUM appropriato nella stessa" -" directory della immagine appena scaricata e segui queste istruzioni." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Scarica Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Scarica Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -#, fuzzy -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Un build di Atomic Host viene creato ogni due settimane circa." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"L'ultima build di due settimane non ha soddisfatto i nostri criteri di test." -" Le immagini sono disponibili da oltre %(atomic_age)s giorni. Controlla il " -"blog Progetto Atomic per aggiornamenti e informazioni sui bug bloccanti di " -"Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Queste sono le ultime immagini ufficiali di Fedora Atomic Host, prodotte " -"%(atomic_age)s giorni fa." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Immagini Atomic Host" - -#: data/content/atomic/download/index.html:49 -#, fuzzy -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host è un sistema operativo basato avanzato che segue il " -"modello Project Atomic. È progettato su Kubernetes e sui containers. Le " -"immagini pubblicate qui hanno superato diversi livelli di test " -"automatizzati." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Siete pregati di testare le nuove versioni prima di utilizzarle in " -"produzione. Se scoprite un problema, gli strumenti di Atomic Host " -"rendono semplice il ritorno ad una release precedente — e se capita, potete " -"aiutarci segnalando bug proponendo fix." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Le immagini Fedora Atomic Host sono aggiornate circa ogni due " -"settimane, anziché seguire la cadenza semestrale di Fedora. Poiché " -"lo sviluppo avanza rapidamente, solo l'ultima versione principale di Fedora " -"è supportata." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Si noti che diversi media Fedora Atomic Host sono soggetti a diversi" -" livelli di controllo automatico.Puoi avere ulteriori informazioni " -"sul progetto Atomic alla paginaprojectatomic.io. clicca qui per vedere lo stato del test corrente." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Immagini Atomic Host per Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"I link seguenti ti forniranno una lista delle Atomic Host Hardware Virtual " -"Machine (HVM) AMI disponibili per regione con i pulsanti per lanciarli nel " -"tuo account Amazon Web Service. Sono anche forniti gli AMI ID per l'utilizzo" -" con l'AWS Console o gli strumenti a linea di comando." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Formato GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -#, fuzzy -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"Formato GP2 AMI usa un'archiviazione più veloce SSD; usa queste AMI per la " -"velocità, anche se noterete un aumento dei costi di archiviazione rispetto " -"al normale." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Chiuso" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Regione" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Avvia" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Formato Standard)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -#, fuzzy -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"I formati standard AMIs sono più idonei se l'accesso ai dati è poco " -"frequente e volete mantenere bassi i costi per lo storage." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s Standard Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Formato Standard" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Immagini Atomic Host per Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Le immagini Vagrant per Fedora Atomic Host sono disponibili per i gestori " -"VirtualBox e Libvirt. Puoi avviare Fedora Atomic Host in un box vagrant " -"scaricando le immagini da Fedora o da HashiCorp's Vagrant " -"Cloud con gli strumenti vagrant." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -#, fuzzy -msgid "View Vagrant Downloads" -msgstr "Mostra i Download di Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -#, fuzzy -msgid "Vagrant Image Downloads" -msgstr "Download delle Immagini di Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Queste sono immagini Vagrant Box per il deploy utilizzando Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Immagine VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Se state usando Vagrant su Mac OS X o Windows, questa è probabilmente " -"l'immagine che desiderate utilizzare." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Download" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Immagine Base Vagrant VirtualBox 64-bit %sMB" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Immagine libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Se state usando Vagrant su Fedora, questa è l'immagine che vi occorre." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Immagine Base Vagrant libvirt/KVM 64-bit %sMB" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -#, fuzzy -msgid "View Downloads using Vagrant tools" -msgstr "Mostra Download usando gli strumenti Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -#, fuzzy -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Download Vagrant usando strumenti Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"È possibile utilizzare il seguente comando per prendere le immagini Vagrant " -"Box da HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Se in precedenza si è eseguita Fedora %(rel)s Atomic Host in Vagrant sulla " -"macchina successivamente si può prendere l'ultima versione eseguendo:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Per maggiori informazioni sull'esecuzione di Vagrant su Fedora Workstation, " -"guardare la nostra pagina wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Immagini Atomic Host per Ambienti Cloud" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Immagine qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Questa è Fedora %(rel)s Cloud Atomic Host in una immagine con formato Qcow2 " -"per l'utilizzo con OpenStack" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Immagine Qcow2" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Immagine Raw" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Questa è Fedora %(rel)s Cloud Atomic Host in una immagine con formato " -"compresso raw. Se non sei sicuro di cosa usare, prova questa." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB Immagine Raw Compressa xz" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Altri download" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Immagine ISO Atomic Host (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Immagine del container (%sMB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Prova una pre-release" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Stiamo lavorando sulla nostra prossima release." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Aiutaci ad ottenere F%(rel)s pronta!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Scarica le Immagini F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Come provare pre-release" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Risorse" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Progetto " -"Atomic: Guida Introduttiva" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" -"Documentazione su come iniziare utilizzando Progetto Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Progetto" -" Atomic: Mailing List" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Iscriviti alla mailing list upstream al atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Progetto Atomic: Chat IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Entra nel canale Progetto Atomic #atomic su " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifica" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifica la tua immagine" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Scarica Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Queste sono le ultime immagini ufficiali di Fedora Atomic Host, prodotte il " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Questo è un software di pre-release ed è supportato dall'Atomic Working Group. Per eventuali domande, " -"rivolgersi alla loro mailing list o " -"%(team_irc)s su freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Eventuali problemi o bug devono essere riportati nel Bugzilla" -" di Red Hat. Il Fedora Project non fornisce garanzie sulla idoneità o " -"utilità." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxes per Fedora Atomic Host sono disponibili per i provider " -"VirtualBox e Libvirt. Puoi prendere Fedora Atomic Host nella vagrant box " -"scaricando l'immagine da Fedora o usando lo strumento di vagrant per tirare " -"le immagini da HashiCorp's Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Questa è Fedora %(rel)s %(state)s Cloud Atomic Host in una immagine con " -"formato Qcow2 per l'utilizzo con OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Questa è Fedora %(rel)s %(state)s Cloud Atomic Host in una immagine con " -"formato compresso raw. Se non sei sicuro di cosa usare, prova questa." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Pagina non trovata" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Pagina non esistente" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Siamo spiacenti, ma il file o la pagina richiesti non sono stati trovati." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Idee per la risoluzione dei problemi" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Ricontrollare l'indirizzo, se lo si è inserito manualmente. È stato copiato " -"correttamente?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Link errato? Contatta il webmaster e facci sapere quale " -"link ti ha portato qua." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"La pagina o il file potrebbero essere stati spostati. Controlla il nostrosito principale o cerca sul nostro wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Chiavi di firma dei pacchetti" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Questa pagina elenca le chiavi GPG pubbliche utilizzate per firmare i " -"pacchetti in Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Scopri come Fedora ti protegge." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora utilizza la firma GPG dei pacchetti per assicurare che l'integrità " -"dei pacchetti non sia stata compromessa." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Leggi le FAQ per saperne di più »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Chiavi attualmente usate" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primaria" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secondaria" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Cerchi le chiavi oboslete?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Chiavi di firma dei pacchetti obsolete" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Questa pagina elenca le chiavi GPG pubbliche non più utilizzate per firmare " -"i pacchetti in Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Chiavi obsolete e inutilizzate" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Chiave GPG Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"I pacchetti nei media di installazione sono firmati con questa chiave. I " -"repository dnf più importanti sono fedora, fedora-" -"updates per Fedora 7-9, and core e core-" -"updates per Fedora Core (Versione 6 e precedenti). Guardare http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html per maggiori informazioni sul " -"perchè questa chiave è obsoleta." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Se si partecipa al collaudo dei pacchetti, questa è la chiave da usare per " -"verificare i pacchetti sotto test. Questa chiave firma i pacchetti contenuti" -" nel repository fedora-testing. Vedere http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html per sapere perché questa chiave " -"è obsoleta." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "test Fedora 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Se state usando Fedora Extras con Fedora Core 6, usate questo pacchetto del " -"repository extras. Questa chiave non sarà più usata dopo " -"che Fedora Core 6 e Extras raggiungono EOL (7 Dicembre 2007). Questa chiave " -"non è inclusa nel pacchetto fedora-release in Fedora 7 e " -"successivi rilasci." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Questa chiave è stata usata per i pacchetti rilasciati dal progetto Fedora " -"Legacy per aggiornare versioni che hanno raggiunto la fine del supporto " -"ufficiale (EOL). Il progetto Fedora Legacy non esiste più, quindi questa " -"chiavi non verrà più usata per firmare dei pacchetti. Questa chiave non è " -"inclusa nel pacchetto fedora-release·in Fedora 7 e versioni" -" successive." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ firma pacchetti" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Impara come Fedora utilizza GPG per firmare i pacchetti e garantire la tua " -"sicurezza." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Come usa il Fedora Project le chiavi GPG per firmare i pacchetti?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Ogni pacchetto RPM stabile pubblicato dal Fedora Project viene firmato con " -"una firma GPG. Per impostazione predefinita, dnf e lo strumento grafico di " -"aggiornamento del software verificano in automatico queste firme e rifiutano" -" l'installazione dei pacchetti che non sono firmati o hanno firme non " -"valide. Dovresti sempre verificare la firma di un pacchetto prima di " -"installarlo. Queste firme assicurano che il pacchetto che si sta " -"installando sia stato prodotto dal Fedora Project e che non sia stato " -"alterato (accidentalmente o maliziosamente) da qualche mirror o altro sito " -"web che fornisce il pacchetto." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"I pacchetti che si possono scaricare dal sistema di compilazione Koji non " -"contengono firme, perciò vanno usati con attenzione. In maniera analoga, i " -"pacchetti bleeding-edge in Rawhide non sono necessariamente firmati." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importare le chiavi" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Le chiavi sono incluse nel pacchetto fedora-release, si " -"possono trovare nella cartella /etc/pki/rpm-gpg. Da notare " -"che non tutte le chiavi di questa cartella sono usate da Fedora -- alcune " -"sono usate per firmare i pacchetti di Red Hat Enterprise Linux, altre non " -"sono usate per niente. Se si usano pacchetti del Red Hat Enterprise Linux " -"vedere https://www.redhat.com/security/team/key. Le " -"chiavi usate da Fedora sono abilitate nella configurazione dei repository di" -" dnf, così non si ha la necessità di importarle manualmente nel database di " -"rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"In aggiunta al pacchetto fedora-release e a questa pagina web, puoi " -"scaricare le chiavi di Fedora da un server di chiavi pubblico, come keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Per alcuni repository, come i repository con pacchetti stabili ed in test " -"nella configurazione predefinita, dnf è capace di trovare " -"una chiave appropriata per il repository e chiedere conferma all'utente " -"prima di importare la chiave se non è stata già importata nel database di " -"rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Potrete sempre importare una chiave nel database di RPM a mano usando il " -"seguente comando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Per maggiori informazioni fare riferimento al manuale di " -"rpm." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Se volete verificare che le chiavi installate sul vostro sistema coincidano " -"con le chiavi qui elencate, potete usare GnuPG per verificare che le " -"fingerprint delle chiavi coincidano. Per esempio:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "Ottieni Fedora Server: le ultime tecnologie per le tue app e servizi" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Lancia le tue applicazioni su un server Linux con le ultime tecnologie open " -"source." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Ora con contenuti in più versioni e con cicli di vita differenti - così che " -"il tuo server può muoversi sia lentamente che velocemente." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server ha un ciclo di vita breve ed è un sistema operativo supportato" -" dalla community, che abilita qualunque amministratore di sistemi all'uso " -"delle ultime tecnologie disponibili nella community open source." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Si presenta Modularity" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularity offre un nuovo repository di tipo modulare che fornisce più " -"versioni dello stesso software con cicli di vita indipendenti." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Puoi scegliere una specifica versione di un'applicazione o di un certo " -"linguaggio di cui hai bisogno e tenerlo anche quando il SO si aggiorna ad " -"una nuova versione." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Maggiori informazioni su Modularity" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Facile Amministrazione" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Gestisci semplicemente il tuo sistema con l'interfaccia potente e moderna di" -" Cockpit. Visualizza e controlla le prestazioni e lo stato del sistema, " -"esegui il deploy e gestisci servizi basati su container." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Servizi Database" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server porta con sé un database server professionale, scalabile, " -"offerto dal progetto open-source PostgresSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Soluzione Completa Domini Enterprise " - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Evolvi la tua rete Linux con gestione avanzata delle identità, DNS, servizi " -"di certificazione, integrazione del tuo ambiente con domini Windows(TM) " -"attraverso FreeIPA, il controllore di domini open-source." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"“Per DevConf US, avevo bisogno di un sistema per gestire la conferenza. Ho " -"scoperto regcfp, di Patrick Uiterwijk, che sembrava soddisfare le mie " -"esigenze. Purtroppo, non era compatibile con nodejs 8 di F27. Lanciando F28 " -"Server e scegliendo lo stream \"nodejs:6\", tutto è andato a buon fine!”" - -#: data/content/server/index.html:126 -#, fuzzy -msgid "DevConf US Conference Co-Chair" -msgstr "DevConf US Conference Co-Chair" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Pronti a provare Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Scarica Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Scarica Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Immagine installazione 64-bit %sGB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"L'immagine di installazione Fedora Server permette di creare un supporto per" -" il tuo computer che si avvia nel programma di installazione così da " -"installare direttamente Fedora Server sul tuo hard disk." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Per usare quesa immagine, è necessario un masterizzatore per creare DVD, " -"oppure un drive USB flash grande almeno quanto l'immagine." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Se vuoi provare le nuove funzionalità modulari di Fedora Server, visita la " -"sezione Uso del moduli della documentazione di " -"Modularity. Se vuoi approfondire Modularity in generale, visita il sito web su pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Immagine Netinstall:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Immagine 64-bit %sMB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Scaricate le immagini F%(rel)s Alpha" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Scaricate le immagini F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Altre Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Tecnologia ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Come trasformo l'immagine live in un supporto avviabile?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Dopo aver scaricato l'immagine, potrai usarla per creare un supporto " -"avviabile. Masterizza l'immagine su un DVD vuoto oppure " -"trasferiscila su un drive USB flash." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Come faccio il boot dal supporto?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Consulta la documentazione del tuo sistema per la procedura di boot da un " -"supporto diverso dall'hard disk interno. Il processo può differire in base " -"alla marca e modello del tuo computer. Potrai trovare utili questi suggerimenti comuni." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Scarica Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Scarica Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Immagine installazione 64-bit %sGB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Questo è un software di pre-release ed è supportato dal Server Working Group. Per eventuali domande, " -"rivolgersi alla loro mailing list o " -"%(team_irc)s su freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Leggere le Note di Rilascio per avere " -"maggiori informazioni sui cambiamenti e le nuove caratteristiche introdotte," -" e la pagina Common Bugs per conoscere le" -" informazioni su problemi comuni riscontrati e su come evitarli." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Quando sarà rilasciata Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Controlla tutte le tappe del calendario di rilascio..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Una volta scaricata una immagine, verificala per sicurezza ed integrità. Per" -" verificare l'immagine, scarica il file di CHECKSUM sotto nella stessa " -"directory della immagine appena scaricata e segui queste istruzioni." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Ottieni Fedora Workstation: il miglior sistema operativo desktop per " -"sviluppatori software" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "La workstation Linux che stavi aspettando." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation è un sistema operativo affidabile, user-friendly e " -"potente per il laptop o computer desktop. Supporta una ampia tipologia di " -"sviluppatori, dall'hobbista allo studente, fino al professionista in " -"ambienti aziendali." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"\"La pletora di strumenti forniti da
Fedora mi consente di portare a " -"termine i miei lavori.
Funziona e basta.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM performance engineer" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Elegante interfaccia utente" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Concentrati sul tuo codice con l'ambiente desktop GNOME 3. GNOME è stato " -"progettato tenendo conto dei suggerimenti degli sviluppatori e minimizza le " -"distrazioni, così ti puoi concentrare su quello che è importante." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Completa cassetta degli arnesi opensource" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Evita la seccatura di dover trovare o compilare gli strumenti che ti " -"servono. Con Fedora e il suo set completo di linguaggi, strumenti e utility," -" tutto è ad un click o linea di comando di distanza. È possbile anche " -"ospitare progetti e repository con COPR, rendendo il tuo codice e binari " -"immediatamente accessibili alla comunità." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes e altri strumenti di virtualizzazione" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Attiva velocemente machine virtuali per testare il tuo codice su diverse " -"piattaforme usando GNOME Boxes. Oppure, immergiti negli altri potenti e " -"scriptabili strumenti di virtualizzazione per avere il totale controllo." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Supporto a Docker incluso" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Containerizza le tue app, oppure usa Fedora per il deploy di app " -"containerizzate, utilizzando le più recenti tecnologie come Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Pronti a provare Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Scarica Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Scarica Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Fedora Media Writer per Mac OS X %s MB " - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "Immagine ISO 64-bit per Linux %s GB ." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Fedora Media Writer per Windows %s MB " - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Scarica Fedora Media Writer per il tuo sistema operativo." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Servono istruzioni? O una versione differente?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Esecuzione di Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Per eseguire Fedora Workstation, occorre:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (download in alto)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" -"Un dispositivo di memorizzazione USB con almeno %s GB di spazio disponibile" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Opzionalmente, è possibile installare Fedora Workstation su di un computer " -"portatile o desktop che abbia almeno un processore da 1 GHz, 1 GB di RAM e " -"10 GB di spazio disponibile su disco. Per fare questo, eseguire la versione " -"live di Fedora Workstation dal dispositivo USB sul computer su cui si " -"desidera eseguire l'installazione, lanciare l'applicazione Fedora Media " -"Writer e seguire le istruzioni visualizzate per completare l'installazione." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Piattaforme Supportate" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer supporta le seguenti piattaforme:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Abbiamo rilevato automaticamente che si sta eseguendo Mac OS " -"X e abbiamo proposto tale versione per il download. Se abbiamo " -"rilevato un sistema operativo in modo errato o si vuole scaricare una " -"versione differente, per favore cliccare sul bottone in basso \"Visualizza " -"tutte le piattaforme di download\"." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Abbiamo rilevato automaticamente che si sta eseguendo Linux" -" e abbiamo proposto tale versione per il download. Se abbiamo rilevato un " -"sistema operativo in modo errato o si vuole scaricare una versione " -"differente, per favore cliccare sul bottone in basso \"Visualizza tutte le " -"piattaforme di download\"." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Abbiamo rilevato automaticamente che si sta eseguendo " -"Windows e abbiamo proposto tale versione per il download. " -"Se abbiamo rilevato un sistema operativo in modo errato o si vuole scaricare" -" una versione differente, per favore cliccare sul bottone in basso " -"\"Visualizza tutte le piattaforme di download\"." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Visualizza tutte le piattaforme di download" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Disponibile su DNF per Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Maggiori dettagli" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Come utilizzo questa immagine ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifica questa immagine" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Immagine Live 64-bit %sGB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Immagine Live 32-bit %sGB" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Immagine Netinstall:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Immagine 32-bit %sMB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Prova Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic offre un'immagine di sistema immutabile e aggiornamenti via OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "%sGB per l'mmagine Atomic a 64-bit" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Ulteriori informazioni" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Annuncio di rilascio" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Leggi l'annuncio completo di rilascio su Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Note di rilascio" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Conoscere le modifiche rispetto all'ultima versione di Fedora, nonché i " -"requisiti minimi e le raccomandazioni per l'esecuzione di Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" -"Guida all'installazione" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Ti raccomandiamo di leggerla prima di installare Fedora sul tuo sistema, in " -"quanto risponde a molte domande comuni." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Bug Frequenti" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Una eccellente risorsa da consultare in caso di problemi durante " -"l'installazione o l'esecuzione di Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Cosa significa \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer creerà una versione completa e funzionante di Fedora " -"Workstation, immediatamente eseguibile dal dispositivo USB. È possibile " -"utilizzare l'immagine Live per provare e testare Fedora senza apportare " -"modifiche sul proprio disco rigido." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"È possibile installare Fedora sul proprio disco rigido direttamente da " -"questa versione \"live\" di Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Le spin di Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Scarica Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Scarica Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Questo è un software di pre-release ed è supportato dal Workstation Working Group. Per eventuali domande, " -"rivolgersi alla loro mailing list o " -"%(team_irc)s su freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Esecuzione di versioni Pre-Release di Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Per provare una versione Pre-Release di Fedora Workstation, occorre:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Download disponibile sotto)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Una immagine ISO live della versione pre-release di " -"Fedora da provare" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ATTENZIONE: Questa procedura comporta la rimozione completa dei dati dal " -"dispositivo USB. Prima di procedere, assicurarsi di salvare i dati " -"contenenti informazioni importanti dal dispositivo USB." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Scarica Fedora Media Writer qui di seguito." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Scarica l'immagine ISO." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Esegui Fedora Media Writer. Potrebbe essere necessario fornire una password " -"per concedere all'applicazione i permessi corretti." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Selezionare \"Custom OS...\" dalla lista." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Sulla pagina Custom OS, selezionare il pulsante \"Selezionare Live ISO\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Nella finestra di selezione dei file, selezionare l'immagine ISO scaricata." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Inserire il dispositivo USB nel computer. Se il dispositivo USB è già stato " -"utilizzato in precedenza per creare live media, potrebbe essere necessario " -"ripristinare le impostazioni di fabbrica. L'applicazione vi chiederà in " -"questo caso vi chiederà come procedere." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Selezionare \"Crea immagine Live USB\" per scrivere l'immagine. Attendere " -"sino al termine della procedura prima di rimuovere il dispositivo USB e " -"chiudere l'applicazione." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Come testare una versione pre-release" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Guida wiki di Fedora su come testare versioni di pre-release di Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architettura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Avvio istanza AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Seleziona la regione più vicina" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Avvia!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Norme per l'esportazione" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Leggi le Norme per l'esportazione" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Cliccando e scaricando Fedora, accetti i seguenti termini e condizioni." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Ulteriori informazioni >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Informazioni" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Informazioni su Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsor" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Note legali" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Ottenere Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Download Alternative" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Supporto " - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Ottenere aiuto" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Problemi comuni" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portale Sviluppatori Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guida all'installazione" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Partecipa" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Partecipa a Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Pianeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "I Fedora SIG" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora Account System" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunità Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora è sponsorizzata da Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Per saperne di più sulla relazione fra Red Hat e Fedora " - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. ed altri." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Per favore inviare commenti e correzioni ai websites team." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Cambia lingua" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -#, fuzzy -msgid "" -"There's more to \"Fedora" -msgstr "" -"C'è di più in \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Snella. Potente. Pronta a ogni cloud" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"La tecnologia più recente. Dalle fondamenta stabili. Assieme, per le tue " -"applicazioni e i tuoi servizi" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentazione e altre risorse" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Prima di installare Fedora, vorresti confermare che il tuo sistema rispetti " -"i requisiti minimi. Consulta le note di " -"rilascio online per leggere i requisiti minimi e le raccomandazioni." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"È disponibile anche la Guida completa " -"all'installazione. Ti consigliamo di leggerla prima di installare Fedora" -" sul tuo sistema, dato che risponde a molte domande frequenti." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Altri modi per ottenere i supporti" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"È possibile aquistare i media di installazione per Fedora dai rivenditori online o da un rivenditore " -"locale nella tua zona." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Non puoi permetterti il costo dei media di installazione? Richiedi un media " -"di installazione Fedora dal Fedora Free Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informazioni Chiave GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Key ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingerprint" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Scaricala da:" diff --git a/getfedora.org/po/ja.po b/getfedora.org/po/ja.po deleted file mode 100644 index 413db93..0000000 --- a/getfedora.org/po/ja.po +++ /dev/null @@ -1,2593 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Hajime Taira , 2014 -# Jiro Matsuzawa , 2014 -# Hajime Taira , 2015. #zanata -# Jiro Matsuzawa , 2015. #zanata -# KATO Tomoyuki , 2015. #zanata -# Ooyama Yosiyuki , 2015. #zanata -# Hajime Taira , 2016. #zanata -# Ooyama Yosiyuki , 2016. #zanata -# Ooyama Yosiyuki , 2017. #zanata -# Ooyama Yosiyuki , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-04 01:50-0400\n" -"Last-Translator: Ooyama Yosiyuki \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" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora 行動規範" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora 行動規範" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "コミュニティの一員として振る舞い、行動規範を遵守しましょう。" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "行動規範" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"多様性は私たちの大規模な強みの 1 " -"つですが、コミュニケーションの問題や不満をもたらす可能性もあります。そのために、プロジェクトの資源を使用するときに遵守するようお願いする、いくつかの基本原則があります。" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"これは、あなたができないような膨大な一覧ではありません。むしろ、それが意図する精神を理解してください。より簡単にお互いを素晴らしくするガイドです。" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"思いやりを持ちましょう。あなたの仕事は他の人により使用されます。また、順番に他の仕事に依存していきます。あなたが行った決定はユーザーや仲間に影響を与えます。そして、物事を決定するときは、それらの影響を考慮すべきです。" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"敬意を持ちましょう。必ずしも私たち全員がいつも同意するとは限りません。しかし、意見の相違は、悪い振る舞いと悪い行儀の言い訳にはなりません。私たちは誰しも、ときどき欲求不満を経験するかもしれません。しかし、その欲求不満が個人攻撃に変わることは認められません。人々が不快感または脅威を感じているコミュニティは生産的なものではないことを覚えておくことが重要です。Fedoraコミュニティのメンバーは、他の貢献者だけではなく、Fedoraコミュニティ以外の人々やFedoraのユーザーと関わるとき、敬意を示すべきです。" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"私たちは意見が合わないとき、その理由を理解しようとします。社会的および技術的な意見の相違はどちらもときどき起こります。そして、それはFedoraも例外ではありません。意見の相違を解決して、建設的に意見を変えることは重要です。" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"私たちは意見が合わないとき、その理由を理解しようとします。社会的および技術的な意見の相違はどちらもときどき起こります。そして、それはFedoraも例外ではありません。意見の相違を解決して、建設的に意見を変えることは重要です。私たちはそれぞれ異なるということを覚えておいてください。Fedoraの強みは、その変化にとんだコミュニティ、幅広い環境からの人々から生まれます。さまざまな人々は問題に関して異なる観点を持ちます。ある人が見解を持っている理由を理解できないことは、間違っていることを意味しません。間違いをすることが人間であることを忘れないでください、そしてお互いを非難してもらちが明きません。それよりは、問題を解決する手助けをして、間違いから学ぶ手助けを申し出てください。" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Choose Freedom. Choose Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"より簡単なセットアップと、さらなるイノベーションに。あなたのニーズに合う Fedora フレーバーを選んでください。

" -"あなたのニーズに合わせて合理化されており、すぐに作業を始められます。" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s がリリースされました! ダウンロードページで入手してテストできます。" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s がリリースされました! 今すぐ入手してみてください!" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "いますぐダウンロード" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation は、ノート PC " -"やデスクトップ向けに洗練された簡単に使えるオペレーティングシステムです。あらゆる種類の開発者や発明家に役立つツールも揃っています。" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "いますぐダウンロード" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server " -"は、最高、最新のデータセンター技術を搭載したパワフルかつフレキシブルなオペレーティングシステムです。あなたのインフラとサービス全体をしっかりと管理できます。" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora は、常に誰でも自由に使用、変更、配布することができます。Fedora " -"を作り上げ、使っているのは、コミュニティとして協力し合う世界中の人たち、すなわち Fedora Project です。" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "もっと、他の Fedora が欲しい?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora コミュニティでは、すでに ARM イメージ " -"や、その他の Live Spin、特定の要件に合わせて調整したバリエーションを用意しています。 これらは Fedora Spins もしくは Fedora Labs のウェブサイトから確認できます。" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "つながる & 知りたい" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"参加したいですか? コミュニティで何が起きるかを知りたいですか? " -"Fedora Magazine には、Fedora Project" -" の最新のニュースとレポートがいっぱい!" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "ドキュメントを読む" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"最新のリリースの詳細については、リリースノートを確認してください。Fedora の使い方や、システム要件などの詳細については、公式ドキュメントを参照してください。" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "ヘルプが欲しい!" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Fedora のことで何かお困りですか? 他のユーザーの手助けが必要なときは、Ask Fedora " -"では、他のユーザーからの質問のアーカイブを読むことができますし、あなたが質問することもできます。" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora のスポンサー" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "The Fedora Project は次の団体の協力によって運営されています。" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "主なスポンサー" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. は The Fedora Project " -"の主なスポンサーです。様々なフルタイムの従業員の支援や、ハードウェアやネットワーク回線、イベント開催時の金銭的支援や法的な助言を行っています。" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "The Fedora Project は次のスポンサーによる多大な支援に大変感謝いたします。" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Fedoraの活動を後援することに興味がありますか?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"admin@fedoraproject.org にコンタクトするか、もしくは、 " -"irc.freenode.net#fedora-adminに立ち寄ってください。" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "ダウンロードしたイメージを検証する" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM と検証手順" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "イメージを検証するにはどうすればよいですか?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"イメージのダウンロードが完了すれば、安全性と完全性を確認するためにダウンロードしたイメージを検証してください。イメージを検証するには、まず適切な " -"CHECKSUM ファイルをダウンロードして、イメージの保存場所と同じフォルダーに保存してください。" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "64-bit版イメージ" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "32-bit版イメージ" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "次に、Fedora の GPG 鍵をインポートします:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "GPG 鍵を検証するには、ここクリックしてください。" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "CHECKSUM ファイルが有効であることを検証します:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM ファイルは、以下の鍵のいずれかによる署名が付与されています:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "これで、CHECKSUM ファイルの検証が完了しました。最後にイメージのチェックサムが合致することを確認します:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "ダウンロードしたイメージが正当であるという出力結果が得られれば、そのイメージはいつでも使用できます。" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "ダウンロードしたイメージを他のオペレーティングシステム上で検証するにはどうすればよいですか?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Fedora をダウンロードしていただき、ありがとうございます。" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "しばらくするとダウンロードが開始されます。開始されない場合は次の URL をクリックしてください。" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "ダウンロードを検証してください" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"イメージのダウンロードが完了すれば、安全性と完全性を確認するためにダウンロードしたイメージを検証してください。イメージを検証するには、まず適切な " -"CHECKSUM ファイルをダウンロードして、イメージの保存場所と同じフォルダーに保存してください。その後、この手順に従ってください。" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "検証!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "これは、最新の公式 Fedora Atomic Host イメージです。%(atomic_age)s 日前に生成されました。" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "閉じる" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "リージョン" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "起動" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox イメージ" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "もしも、Mac OS X や、Windows 上で Vagrant を動かす際に利用するのであれば、このイメージをお使い下さい。" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ダウンロード" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bit の VirtualBox Base Vagrant のイメージ (%sMB)" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM イメージ" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "もしも、Fedora 上で Vagrant を動かす際に利用するのであれば、このイメージをお使い下さい。" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bit の libvirt/KVM Base Vagrant イメージ (%sMB)" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 イメージ" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"これは、Qcow2 形式イメージの Fedora %(rel)s Cloud Atomic Host です。OpenStack " -"で使用する場合には、こちらをお使い下さい。" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit の Qcow2 イメージ (%sMB)" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw イメージ" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"これは、Raw 形式の Fedora %(rel)s Cloud Atomic Host " -"のイメージを圧縮したものです。何の形式を使用するか分からない場合には、こちらをお試し下さい。" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit の xz圧縮された Raw イメージ (%sMB)" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "他のダウンロード" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "プレリリースを試す" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "私達は次のリリースへ向けて作業中です。" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr " F%(rel)s を入手して私達を手伝ってください!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "プレリリースのテスト方法" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "リソース" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "検証" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "イメージを検証する" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"すべての問題とバグは Red Hat Bugzilla 経由で報告お願いします。Fedora Project " -"は、その適合性と有用性について何も保証しません。" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"これは、Qcow2 形式イメージの Fedora %(rel)s %(state)s Cloud Atomic Host です。OpenStack " -"で使用する場合には、こちらをお使い下さい。" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"これは、Raw 形式の Fedora %(rel)s %(state)s Cloud Atomic Host " -"のイメージを圧縮したものです。何の形式を使用するか分からない場合には、こちらをお試し下さい。" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - ページが見つかりません" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: ページが見つかりません" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "申し訳ありませんが、お探しのファイルまたはページが見つかりませんでした。" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "トラブルシューティング" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "手動で URL を入力した場合は、入力内容を再確認してください。コピーして入力した場合は、正しくコピーできているか確認してください。" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "リンクが壊れていますか? ウェブマスターに連絡して、どのリンクが壊れているかお知らせください。" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"ページまたはファイルの場所が変更された可能性があります。メインサイトを確認するか、Fedora " -"Project のwiki で検索してみてください。" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "パッケージ署名鍵" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "このページには、Fedora パッケージの署名に使用される公開 GPG 鍵の一覧を掲載しています。" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Fedora がどのようにあなたの安全を確保しているかについて。" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "Fedora は、GPG によるパッケージ署名を行うことでパッケージの完全性を確保します。" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "FAQ を読んで詳細を確認する »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "現在使用中の鍵" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "プライマリ" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "セカンダリ" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "廃止された鍵を探していますか?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "廃止されたパッケージ署名鍵" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "このページには、Fedora のパッケージ署名にはもう使用していない公開 GPG 鍵の一覧を掲載しています。" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "廃止された鍵、使用されなくなった鍵" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG 鍵" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"インストールメディアに収められたパッケージは、この鍵で署名されています。関連する dnf リポジトリは、Fedora 7-9 の " -"fedorafedora-updates、および Fedora Core " -"(バージョン 6 以前) の corecore-updates " -"です。この鍵が廃止された理由については、http://www.redhat.com/archives" -"/fedora-announce-list/2008-August/msg00012.html を参照してください。" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora テスト" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"パッケージのテスト作業を行う場合、この鍵を使ってテスト用パッケージを検証してください。fedora-testing " -"リポジトリのパッケージはこの鍵で署名されています。この鍵が廃止された理由については、http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html を参照してください。" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Fedora Core 6 で Fedora Extras を使用している場合、extras " -"リポジトリのパッケージには、この鍵を使用してください。Fedora Core 6 および Extras が EOL を迎えた (2007年12月7日) " -"後は、この鍵は使用されなくなります。Fedora 7 以降のリリースで、この鍵が fedora-release " -"パッケージに含まれることはありません。" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"公式の EOL を迎えたリリースを更新するために Fedora Legacy " -"プロジェクトがリリースしたパッケージを署名するのに、この鍵が使用されていました。Fedora Legacy " -"プロジェクトはもう存在しません。そのため、この鍵がパッケージの署名に使用されることもなくなりました。Fedora 7 以降のリリースで、この鍵が " -"fedora-release パッケージに含まれることはありません。" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "パッケージ署名についてよくある質問" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "あなたの安全を確保するために、GPG によるパッケージ署名が Fedora でどのように行われているかを紹介します。" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Fedora Project では、パッケージの署名に GPG 鍵がどのように使用されていますか?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Fedora Project が公開するそれぞれの安定版 RPM パッケージは、GPG で署名されています。dnf " -"やグラフィカルなアップデートツールは、デフォルトでこれらの署名を検証します。署名されていなかったり、署名が不正だったりすると、パッケージはインストールされません。パッケージをインストールする前には、かならず署名を検証するようにしてください。この署名によって、そのパッケージが、Fedora" -" Project によって提供されたものであること、および配布元のミラーサーバーやウェブサイトによって (事故にしろ悪意にしろ) " -"改変されていないことを確認できます。" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Koji ビルドシステムからダウンロードできるパッケージは署名されていません。注意して扱ってください。同様に、Rawhide " -"で提供される最先端のパッケージも署名されているとは限りません。" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "鍵のインポート" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"鍵は、fedora-release パッケージに同梱されており、/etc/pki/rpm-" -"gpg ディレクトリに保存されています。ただし、このディレクトリ内の すべての鍵が Fedora Project " -"で使われているとは限りません。鍵によっては、Red Hat Enterprise Linux " -"のパッケージの署名に使われているものもあれば、既に使われなくなった鍵が残っていることもあります。Red Hat Enterprise Linux " -"のパッケージを使用する際には、https://www.redhat.com/security/team/key " -"をご覧ください。Fedora で使用する鍵は、dnf レポジトリの設定で有効にされているので、通常、手動で RPM " -"データベースに鍵をインポートする必要はありません。" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"fedora-release パッケージやこのウェブページの他にも、keys.gnupg.net " -"などの公開鍵サーバーから Fedora の鍵をダウンロードすることもできます。" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"標準で安定版とテスト版の両方のパッケージが存在するようなリポジトリについては、そのリポジトリ用の鍵がまだ RPM " -"データベースにインポートされていない場合、dnf " -"は、リポジトリ用の適切な鍵を探しだし、ユーザーに鍵をインポートするかどうか尋ねます。" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "以下のコマンドで、鍵を手動で RPM のデータベースにインポートすることができます:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "詳細は rpm のマニュアルを参照してください。" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"お使いのシステムにインストールされている鍵と、このリストにある鍵が一致しているかどうかを確かめるには、GnuPG " -"を使用して、鍵の指紋が一致するかどうかチェックします。 たとえば、次のコマンドを実行してください:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "容易な管理性" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Cockpit は、あなたのシステムをシンプルに管理します。Cockpit " -"はパワフルで、モダンなインターフェースを提供し、そして、システムの性能および状態監視、コンテナーベースのサービスのデプロイを可能にします。" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "データベース" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server は、オープンソースで提供されるデータベースサーバーの PostgreSQL を提供します。PostgreSQL " -"は、エンタープライズクラスのスケーラブルなデータベースサーバーです。" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "完全なるエンタープライズ向けドメイン管理ソリューション" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Fedora Server を試してみる準備はできましたか? " - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Fedora Server のダウンロード" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Fedora %(rel)s Server のダウンロード" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit のインストールイメージ (%sGB)" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Fedora Server " -"インストールイメージから、お使いのコンピューター用のインストールメディアを作成できます。インストーラーを起動して、Fedora Server " -"をハードドライブに直接インストールできます。" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "このイメージを使用するには、DVD への書き込みができるドライブか、イメージサイズ以上の容量のある USB フラッシュドライブが必要です。" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "ネットインストール イメージ:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit のイメージ (%sMB)" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr " F%(rel)s Alpha イメージをダウンロード" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr " F%(rel)s Beta イメージをダウンロード" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "もっと Fedora を入手する" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® テクノロジー" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Live イメージからブータブルメディアを作成するにはどうすればよいですか?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"イメージをダウンロードした後は、イメージからブータブルメディアを作成します。空の DVD " -"にイメージを焼き付けるか、あるいは USB フラッシュドライブにイメージを書き込んでください。" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "作成したメディアからどうやって起動すればよいですか?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"内蔵ハードディスク以外のメディアから起動する手順については、使いのコンピューターのドキュメントを参照してください。コンピューターの製造元やモデルによって起動方法が異なる場合があります。このよく使われる手順は、きっと参考になるでしょう。" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Fedora %(rel)s %(state)s Server のダウンロード" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit のインストールイメージ (%sGB)" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"これはプレリリース版ソフトウェアで Server Working Group " -"によってサポートされています。質問はメーリングリストまたは freenode上の " -"%(team_irc)s で直接お尋ねください。" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"変更内容と新機能に関する詳細はリリースノートを参照ください。 " -"一般的に遭遇するバグとそれらの回避方法については Common Bugs " -"ページを参照ください。" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "いつ Fedora %s はリリースされますか?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "リリーススケジュールのすべてのマイルストーンを参照する..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "これがあなたの待ち望んだ Linux ワークステーションです。" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation は、信頼性が高く、ユーザーフレンドリーで、パワフルなオペレーティングシステムです。ノート PC " -"やデスクトップコンピューター用途に適しています。ホビーイストや学生から企業のプロフェッショナルまで、広範囲に渡る開発者を支援します。" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM パフォーマンスエンジニア" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "洗練されたユーザーインターフェース" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"GNOME 3 デスクトップ環境では、コードに集中できます。GNOME " -"は、開発に携わる人たちからのフィードバックを基に改良を重ね、作業の妨げになるものを徹底的に取り除きました。あなたは重要な仕事に専念できます。" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "オープンソースのツールセット一式を提供" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"必要なツールを探し回ったり、苦労してビルドする必要はありません。Fedora " -"にはオープンソースの言語処理系やツール、ユーティリティの一式が揃っており、すべて簡単に導入することができます。プロジェクトホスティングサービスや " -"COPR などのリポジトリサービスも利用でき、自分のコードやビルドしたパッケージをコミュニティに迅速に提供できます。" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes と各種 Virt ツール" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"仮想マシンをさっと起動して様々なプラットフォームで自分のコードをテストすることが、GNOME Boxes " -"を使って簡単にできます。その他にも、パワフルでスクリプタブルな仮想化ツールを駆使して、もっと高度な制御を行うことも可能です。" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Docker サポート" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"コンテナー化されたあなたのアプリケーションや、その他のコンテナー化されたアプリケーションを Fedora " -"上に展開し、最新のテクノロジーを利用することができます。" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Fedora Workstation を試してみる準備はできましたか? " - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Fedora Workstation のダウンロード" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Fedora %(rel)s Workstation のダウンロード" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Mac OS X 用の %s MB Fedora Media Writer" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO Linux 用。" - -#: data/content/workstation/download/index.html:46 -#, fuzzy, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"新バージョンをインストールするためにダウンロードが必要です。アップグレード方法については follow these " -"instructions. を参照してください。" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Windows 用の %s MB Fedora Media Writer" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "インストラクションが必要ですか? または他バージョン?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Fedora Workstation の起動" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Fedora Workstation を起動するために必要な事は、以下の通り:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (上記からダウンロードできます)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "最低でも %s GB の空き容量のある USB フラッシュドライブ" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "サポートされてるプラットフォーム" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer は以下のプラットフォームをサポートしてます:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"私達は、あたなのお使いのOSが Mac OS X " -"だと自動検出しており、そのOS用のバージョンのダウンロードを提供しています。もし私達の検出が不正確で異なったバージョンが提示されているなら、お手数ですが手動で下のボタンをクリックしてください。" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"私達は、あたなのお使いのOSが Linux " -"だと自動検出しており、そのOS用のバージョンのダウンロードを提供しています。もし私達の検出が不正確で異なったバージョンが提示されているなら、お手数ですが手動で下のボタンをクリックしてください。" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"私達は、あたなのお使いのOSが Windows " -"だと自動検出しており、そのOS用のバージョンのダウンロードを提供しています。もし私達の検出が不正確で異なったバージョンが提示されているなら、お手数ですが手動で下のボタンをクリックしてください。" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "すべてのプラットフォームのダウンロードを表示" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Fedora ならDNF 経由で入手可能" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "詳細" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "この ISO をどう使うのか?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "このイメージを検証する" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit の Live イメージ (%sGB)" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bit の Live イメージ (%sGB)" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "ネットインストールイメージ:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit のインストールイメージ (%sMB)" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "リリースのアナウンスメント" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Fedora Magazine でリリースアナウンスメント全部を読みます。" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "リリースノート" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "Fedora の以前のバージョンからの変更点の学習、最低限の要求事項およびFedora起動の推奨事項。" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "インストールガイド" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "多くのよくある質問に答えてますので、インストール前に読むことをお勧めします。" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Common Bugs" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "\"Live\" とは何ですか?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Fedora Workstation %s のダウンロード" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Fedora %(rel)s %(state)s Workstation のダウンロード" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"これはプレリリース版ソフトウェアで Workstation Working Group " -"によってサポートされています。質問はメーリングリストまたは freenode上の " -"%(team_irc)s で直接お尋ねください。" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Fedora Workstation のプレリリース版を起動するために必要な事は、以下の通り:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "起動したい Fedora のプレリリース版 ライブイメージ ISO" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"警告: この作業手順により、USB メディア上の全データが破壊されます。重要なファイルのバックアップを USB " -"以外に確実に残した上で、これを実行する必要があります。" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Fedora Media Writer アプリを下記からダウンロードします" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"プレリリースのテスト方法" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "Fedora wiki のガイドが Fedora プレリリースのテスト方法を教えます。" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "アーキテクチャー" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "ルートストア" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "AMI インスタンスの起動" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "近くのリージョンを選択してください。" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "いますぐ起動!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "輸出規制" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "輸出規制の全文を参照する" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "Fedora をクリックしてダウンロードすることにより、あなたは次の条件と制約を受け入れることに同意したことなります。" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "さらに読む >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "詳細" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora について" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "スポンサー" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "法律的な情報" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora Workstation を入手する" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora Server を入手する" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternative のダウンロード" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "サポート" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "ヘルプ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "既知のバグ" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora Developer Portal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "インストールガイド" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "参加" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora に参加する" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora の分科会" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora アカウントシステム" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora コミュニティ" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora は Red Hat が支援しています。" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Red Hat と Fedora の関係についての詳細 »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. and others." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"何かフィードバックがあれば、 websites team " -"までお問い合わせください。" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "言語を変更する" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Lean. Powerful. Everycloud ready." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "最先端のテクノロジー、安定した基盤、あなたのアプリケーションとサービスと共に。" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "ドキュメントとその他の情報源" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Fedora をインストールする前に、お使いのシステムが Fedora " -"の最低要件を満たしていることを確認するとよいでしょう。最低要件と推奨構成については、オンラインのリリースノートを参照してください。" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"また、インストールガイドも完備してあります。よくある質問への回答が載っているので、インストールを行う前にこのガイドに目を通しておくことをお勧めします。" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "他の方法でメディアを入手する" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Fedora のインストールメディアをオンラインベンダーか、お住いの地域のローカルベンダーから購入することができます。" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"インストールメディアの費用を支払う余裕がない場合は、Fedora Free Media Program から " -"Fedora のインストールメディアを請求してください。" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG 鍵情報" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "鍵 ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "指紋" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "取得先:" diff --git a/getfedora.org/po/ka.po b/getfedora.org/po/ka.po deleted file mode 100644 index eb167b4..0000000 --- a/getfedora.org/po/ka.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:24-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "ჩამოტვირთეთ ახლავე" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "რეგიონი" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI-ის ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "გაშვება" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ჩამოტვირთვა" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "პროექტი Fedora - გვერდი ვერ მოიძებნა" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "გასაღებების შემოტანა" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "არქიტექტურა" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "ძირითადი საცავი" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "აირჩიეთ უახლოესი რეგიონი" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "შესახებ" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora-ის შესახებ" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "მხარდაჭერა" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "დახმარება" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "დასვით კითხვა" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "გაწევრიანება" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "გაწევრიანება" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "პლანეტა Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "სპეციალური ჯგუფები" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ანგარიშების სისტემა" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "საზოგადოება" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora-ის სპონსორია Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/kk.po b/getfedora.org/po/kk.po deleted file mode 100644 index 461542d..0000000 --- a/getfedora.org/po/kk.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Kazakh\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kk\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/km.po b/getfedora.org/po/km.po deleted file mode 100644 index 59c10d0..0000000 --- a/getfedora.org/po/km.po +++ /dev/null @@ -1,2794 +0,0 @@ -# Hok sovanvotey , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-12-03 05:19-0500\n" -"Last-Translator: Hok sovanvotey \n" -"Language-Team: Khmer\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 2.3.4\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "ក្រមប្រតិបិត្តFedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "ក្រមប្រតិបិត្តរបស់ Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "ប្រកាន់ខ្លួនជាសមាជិកសហគមន៍ គោរពតាមក្រមប្រតិបិត្ត" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "ក្រមប្រតិបិត្ត" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"សហគមន៍ Fedora ត្រូវបានបង្កើតឡើងដោយអ្នកមានវិជ្ជាជីវៈ និងអ្នកស្ម័គ្ច្រចិត្ត " -"ពីជុំវិញពិភពលោក ធ្វើការរួមគ្នាចែកចាយក្នុងគ្រប់ទិដ្ឋភាព ពី ផ្នែកកូដ រហូតដល់ " -"ផ្នែកទីផ្សារ។ ភាពចម្រុះ គឺជាកម្លាំងដ៏ធំមួយរបស់ពួកយើង " -"ប៉ុន្តែវាក៏ជាអ្វីដែលអាចនាំឲ្យមានបញ្ហាក្នុងការទំនាក់ទំនង និង " -"ការមិនសប្យាយចិត្ត។ តែទីបញ្ចប់ យើងនៅតែមានហេតុផលច្បាប់តិចតួចមួយចំ​នួន " -"ដែលយើងសំនូមពរមនុស្សឲ្យប្រកាប់ខ្ជាប់នៅពេលដែលពួកគេប្រើប្រាស់ធនធានរបស់គម្រោង។" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"ទាំងនេះមិនមែនជាតារាងនៃអ្វីៗទាំងអស់ដែលអ្នកមិនអាចធ្វើបាននោះទេ។ អ្នកគួរតែ " -"យកវាដាក់ក្នុងចិត្ត ដែលនេះហើយជាគោលបំណងពិតរបស់វា​ - ការណែនាំមួយ " -"ដែលធ្វើឲ្យកាន់តែងាយស្រួលក្នុងការ " -"ប្រព្រឹត្តិខ្លួនឲ្យប្រសើរឡើងចំពោះគ្នាទៅវិញទៅមក។" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"ត្រូវពិចារណាឲ្យមែនទែន។ ការងាររបស់អ្នកនឹងត្រូវបានប្រើដោយមនុស្សដទៃ " -"ហើយអ្នកក៏ពឹងផ្អែកទៅលើការងាររបស់អ្នកដទៃដែរ។​ " -"ការសម្រេចចិត្តអ្វីក៏ដោយដែលអ្នកធ្វើ នឹងប៉ះពាល់ដល់អ្នកប្រើប្រាស់ " -"និងអ្នករួមការងារ ហើយអ្នកគួរតែយកផលវិបាកទាំងនោះ " -"មកគិតនៅពេលដែលអ្នកធ្វើការសម្រេចចិត្ត។" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"ត្រូវមានការគោរព។ យើងទាំងអស់គ្នាមិនមែនយល់ស្របដូចគ្នាទាំងអស់គ្រប់ពេលនោះទេ " -"ប៉ុន្តែការមិនយល់ស្របមិនមែនជាលេសសម្រាប់់ អាក្បបកិរិយាមិនល្អ និង " -"ឬកពារមិនល្អនេោះទេ។ ពួកយើងប្រហែលជាធ្លាប់ជួបការខកចិត្តពីមុន ឬឥឡូវ " -"ប៉ុន្តែយើងមិនអាចឲ្យការខកចិត្តនេះក្លាយជាអ្វីដែល​វាយប្រហារអ្នកដទៃទេ។ " -"វាសំខាន់ណាស់ក្នុងការចងចាំថា សហគមន៍មួយដែលមនុស្សមានអារម្មណ៍មិនស្រួល " -"នឹងគំរាមកំហែង គឺមិនមានផលល្អទេ។ សមាជិកនៃសហគមន៍ Fedora គួរតែគោរព " -"នៅពេលដែលរកវិធីដោះស្រាយជាមួយអ្នកចូលរួមផ្តល់ឲ្យដទៃទៀត " -"ក៏ដូចជាមនុស្សដទៃទៀតនៅក្រៅសហគមន៍ Fedora និងជាមួយអ្នកប្រើប្រាស់ Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"នៅពេលដែលយើងមិនយល់ស្រប យើងត្រូវព្យាយាមយល់ថាហេតុអ្វី។ ការមិនយល់ស្រប " -"ទាំងផ្នែកសង្គម និងបច្ចេកទេស កើតឡើងគ្រប់ពេល ហើយ Fedora មិនមានករណីលើកលែងទេ។ " -"វាមានសារៈសំខាន់ដែលយ់ើងអាចដោះស្រាយការមិនយល់ស្រប និងការកើតនៃទិដ្ឋភាពខុសគ្នា។" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"ត្រូវចាំថា ពួកយើងខុសគ្នា។ កម្លាំងរបស់ Fedora​គឺមកពីសហគមន៍ផ្សេងៗគ្នា " -"ដោយសារមានមនុស្សមកពីប្រវត្តរូបច្រើនផ្សេងគ្នា។​​ " -"មនុស្សខុសគ្នាមានគំនិតផ្សេងគ្នាទៅលើបញ្ហានានា។ " -"ការមិនយល់ថាហេតុអ្វីមនុស្សម្នាក់ប្របាន់នូវគំនិតបែបពាមួយមិនមានន័យថាពួកគេខុសនោះទេ។" -" កុំភ្លេចថានេះជាមនុស្ស ។។។។ " -"និងបន្ទោសគ្នាទៅវិញទៅមកមិនជួយឲ្យពួកយើងរីកចម្រើនទៅណានោះទេ " -"គួរតែផ្តល់នូវការជួយដែលជាវិធីដោះស្រាយបញ្ហា និងជួយឲ្្យយើងរៀនពីកំហុសនោះផងដែរ។" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"ទាញយក Fedora : ទាញយក Linux-based OS របស់យើងសម្រាប់ " -"អ្នកដែលធ្វើការតម្លើងប្រពន្ធ័ប្រូក្រាមកុំព្យូទ័រ, អ្នកដំណើរការប្រូក្រាម " -"និងច្រើនផ្សេងទៀត" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "ជ្រើសរើស សេរីភាព។ ជ្រើសរើស Fedora។" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"ការតម្លើងតិច បម្លាស់ប្តូរថ្មីច្រើន ជ្រើសរើស កម្មវិធីមួយរបស់ Fedora

ដែលស្របទៅតាមភាពងាយស្រួលនៃតម្រូវការរបស់អ្នក " -"ហើយអ្នកអាចចាប់ផ្តើមធ្វើការបានភ្លាមតែម្តង។​" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s​ចេញហើយ! សាកល្បងវានៅផ្នែកទាញយក។" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s ចេញហើយ! ទាញយកវាឥឡូវនេះ។" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "ទាញយកឥឡូវនេះ" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation ត្រូវបានកែច្នៃ " -"ប្រពន្ធ័ប្រតិបត្តិការដែលងាយស្រួលប្រើសម្រាប់ កុំព្យូទ័រដៃ និង កុំព្យូទ័រលើតុ " -"ជាមួយនឹងឈុតនៃឧបករណ៍សម្រាប់អ្នកដែលធ្វើការតម្លើងប្រពន្ធ័ប្រូក្រាមកុំព្យូទ័រ " -"និងអ្នកបង្កើតគ្រប់ប្រភេទទាំងអស់។" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "ទាញយកឥឡូវនេះ" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server មានកម្លាំងខ្លាំង ប្រពន្ធ័ប្រតិបត្តិការមានភាពបត់បែន " -"ដែលរួមបញ្ជូល បណ្តុំទិន្នន័យ តិកណូឡូជី ចុងក្រោយ និងល្អបំផុត។ " -"វាជួយអ្នកក្នុងការគ្រប់គ្រងលើ រចនាសម្ពន្ធ័ និងសេវាកម្មរបស់អ្នក។" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic ផ្តល់កម្មវិធីមូលដ្ឋានដែលល្អបំផុតសម្រាប់ Linux-Docker-" -"Kubernetes (LDK) របស់អ្នក។" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora មិនគិតថ្លៃសម្រាប់គ្រប់គ្នាក្នុងការប្រើប្រាស់ ផ្លាស់ប្តូរ​ និង ចែកចាយ។" -" Fedora បង្កើតឡើង " -"និងប្រើប្រាស់ដោយមនុស្សដែលធ្វើការជាមួយគ្នា​ជាសហគមន៍មួយមកពីជុំវិញពិភពលោក : " -"គម្រោង Fedora។" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "ចង់បានជម្រើសច្រើនផ្សេងទៀតពី Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"សហគមន៍ Fedora ចេញហើយផងដែល\n" -"ARM images alternate live spin និង ការផ្លាស់ប្តូរផ្សេងទៀត នៃ Fedora tailored ទៅ ការតម្រូវជាក់លាក់នានា។ រកមើលទាំងអស់នៅវេបសាយ Fedora Spins or \n" -"Fedora Labs។" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "ផ្សារភ្ជាប់ & ជូនជាដំណឹង។" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"ចង់ទាញយក ចូលរួម? " -"រកមើលថាមានអ្វីកើតឡើងខ្លះនៅក្នុងសហគមន៍? " -"អានពត៌មានចុងក្រោយបំផុត និងរបស់ឡួយនៅ Fedora Magazine។" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "អាន Docs។" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"ឆែកមើលកំណត់់ចំណាំ សម្រាប់ពត៌មានលម្អិតលើរបស់ទើបតែចេញថ្មី។ " -"ដើម្បីស្វែងយល់បន្ថែមពីការប្រើប្រាស់ Fedora និង ពត៌មានលម្អិត ដូចជា " -"តម្រូវការប្រពន្ធ័ មើល official " -"documentation។" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "ទទួលជំនួយ។" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"ត្រូវការជំនួយពី Fedora? ឆែកមើល Ask " -"Fedoraនៅកន្លែងដែលអ្នកអាចអាន កន្លែងសំនួរពីអ្នកប្រើប្រាស់នានា ឬ " -"សួរសំណួររបស់អ្នកខ្លួនឯង។" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "អ្នកឧបត្តម្ភជំនួយ Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "គម្រោង Fedora មោទនភាពដែលមានស្ថាបន័ តទៅនេះជាអ្នកឧបត្តម្ភជំនួយ" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "អ្នកឧបត្តម្ភជំនួយធំដំបូង" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. ជាអ្នកឧបត្តម្ភជំនួយធំដំបូងសម្រាប់ គម្រោង " -"Fedora. Red Hat ផ្តល់ឲ្យ គម្រោង Fedora នូវធនធានជាច្រើន " -"រូមបញ្ជូលការគាំទ្រនិយោជិកពេញម៉ោង រចនាសម្ពន្ធ័ hardware and bandwidth " -"ជំនួយព្រឹត្តិការណ៍ និង អ្នកប្រឹក្សាផ្នែកច្បាប់។" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"គម្រោង Fedora " -"ថ្លែងអំណរគុណដល់អ្នកឧបត្តម្ភដែលផ្លល់នូវការគាំទ្រដ៏ក្រាស់ក្រែលនេះ:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "មានចំណាប់អារម្មណ៍ក្នុងការឧបត្តម្ភអ្វីមួយដល់ Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"ទាក់ទង admin@fedoraproject.org ឬមកកាន់ #fedora-admin on irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "ផ្ទៀងផ្ទាត់រូបភាពដែលអ្នកបានទាញយក" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM និង ការណែនាំពីការផ្ទៀងផ្ទាត់" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "តើខ្ញុំអាចផ្ទៀងផ្ទាត់រូបភាពរបស់ខ្ញុំបានយ៉ាងដូចម្តេច?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"ពេលដែលអ្នកបានទាញយករូបភាពរួចហើយ ផ្ទៀងផ្ទាត់វាដើម្បីសុវត្ថិភាព និងសុច្ចរិតភាព។\n" -"ដើម្បីផ្ទៀងផ្ទាត់រូបភាពរបស់អ្នក ចាប់ផ្តើមដោយទាញយក CHECKSUM​ file សមរម្យមួយ ដាក់ទៅក្នុងប្រអប់ឯកសារដូចគ្នាដែលអ្នកដាក់រូបភាពដែលអ្នកទាញយកនោះ។" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "សម្រាប់ រូបភាព ៦៤- bit" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "សម្រាប់ រូបភាព ៣២- bit" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "សម្រាប់ Atomic Host Iso" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "សម្រាប់រូបភាព​ Atomic Host " - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "បន្ទាប់មក បញ្ចូល GPC key(s) របស់ Fedora " - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"អ្នកអាចផ្ទៀងផ្ទាត់ពត៌មានលម្អិតរបស់ GPG key(s) here." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "ឥឡូវ ផ្ទៀងផ្ទាត់ CHECKSUM file អាចយកជាការបាន: " - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM file គួរតែមានសញ្ញាល្អ​មួយពីគន្លឺះខាងក្រោម:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"ចុងបញ្ចប់ ឥឡូវ CHECKSUM file ត្រូវបានផ្ទៀងផ្ទាត់ ឆែកមើលថារូចភាព checksum " -"ត្រូវបានគូរផ្គង:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"ប្រសិនជាលទ្ធផលថា file អាចយកជាការបាន អ៊ីចឹងមានន័យថាវាអាចប្រើប្រាស់បានហើយ!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"តើអ្នកអាចផ្ទៀងផ្ទាត់រូចភាពរបស់ខ្ញុំដែលបានទាញយក " -"នៅលើប្រពន្ធ័ប្រតិបិត្តិការមួយផ្សេងទៀតបានយ៉ាងដូចម្តេច?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"ទាញយក Fedora Atomic: កម្មវិធីជាមូលដ្ឋានដែលល្អបំផុតដែលផ្ទុក applications " -"stack​របស់អ្នក" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"មានប្រសិទ្ធិភាព និង ពង្រីកនូវការផ្ទុក applications " -"ជាមួយរចនាសម្ពន័ដែលមិនផ្លាស់ប្តូរ។" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "ទាញយក ឬ ដំណើរការក្នុង Public Cloud" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“យើងជ្រើសរើស Fedora Atomic ជាមូលដ្ឋានសម្រាប់ Navops Launch របស់ពួកយើង— " -"Kubernetes ផ្តុំនូវដំណោះស្រាយ ដោយសារអតិថិជនរបស់យើងជឿទុកចិត្ត និង " -"ដំណើរការប្រព្ធន័ប្រតិបិត្តិការ Red Hat។ យើងចូលចិត្ត ចំនុចដែល Fedora Atomic " -"មិនផ្លាស់ប្តូរ ដែលល្អបំផុតសម្រាប់ការទុកដាក់។”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "ប្រធានស្ថាបត្យករ, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host មកពីគម្រោង Atomic គឺងាយស្រួល, កម្មវិធីជាមូលដ្ឋានដែលមិនប្រែប្រួល " -"រចនា ជាមួយ គោលបំណងតែមួយដែលដំណើរការ ការផ្ទុកapplications." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"កំណែថ្មីរបស់ Fedora នៃ Atomic Host ប្រើកន្លែងផ្ទុកដូចគ្មានឹង Fedora Server " -"និងផ្តល់កំណែទម្រង់ថ្មីចុងក្រោយគេបំផុតរបស់ Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "ធ្វើឲ្យទាន់សម័យនៃ OStree " - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"ធ្វើឲ្យទាន់សម័យ នៃប្រពន្ធ័របស់អ្នក ពី OStreeខាងលើ ចុងក្រោយគេបំផុត។ ធ្វើឲ្យ " -"servers ងាយស្រួលចំណាំ និង ងាយស្រួលត្រលប់មកភាពដើមវិញនៅពេលដែលមានបញ្ហាដំឡើង។" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"គ្រ​ប់គ្រង កន្លែងផ្ទុក Docker កន្លែងផ្ទុកប្រពន្ធ័ Atomic Apps និងប្រើប្រាស់" -" command-line tool មួយដែលងាយស្រួល។" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "ធ្វើឲ្យប្រសើរឡើងសម្រាប់ Kubernetes និង OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"តំឡើង Kubernetes ឬ Origin cluster ដើម្បីដំណើរការ containerized applications?" -" ដំណើរការលើ Fedora Atomic " -"ដែលផ្តល់ឲ្យអ្នកនូវកម្មវិធីជាមូលដ្ឋានដែលអ្នកត្រូវការលើ OS ទំហំតូច." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "រួចរាល់ក្នុងការសាកល្បងប្រើ Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "អគុណសម្រាប់ការទាញយក Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"ការទាញយករបស់អ្នកគួរតែចាប់ផ្ត់ើមក្នងប៉ុន្មាននាទីខាងមុខ។ បើអត់ " -"ចុចនូវតំណរភ្ជាប់ខាងក្រោម:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "ផ្ទៀងផ្ទាត់ការទាញយករបស់អ្នក!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"ពេលដែលអ្នកបានទាញយករូបភាពរួចហើយ ផ្ទៀងផ្ទាត់វាដើម្បីសុវត្ថិភាព និងសុច្ចរិតភាព។\n" -"ដើម្បីផ្ទៀងផ្ទាត់រូបភាពរបស់អ្នក ចាប់ផ្តើមដោយទាញយក CHECKSUM​ file សមរម្យមួយ ដាក់ទៅក្នុងប្រអប់ឯកសារដូចគ្នាដែលអ្នកដាក់រូបភាពដែលអ្នកទាញយកនោះ និងស្តាប់តាម ការណែនាំ។" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "ទាញយក Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "ទាញយក Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host នឹងបង្កើតឡើងរៀងរាល់២អាទិត្រ ឬ លើសពីនេះ។" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"ការបង្កើតឡើងក្នុង២អាទិត្យចុងក្រោយគេបំផុតមិនអាចទទួលយកបានស្របទៅតាមការការវិនិច្ឆ័យសាកល្បងរបស់ពួកយើងទេ។​" -" រូបភាពដែលដែលមានគឺលើសពី %(atomic_age)s ថ្ងៃមុន។ ឆែកមើលគម្រោង Atomic blog " -"ពីការភាពទាន់សម័យ និងពត៌មានអំពី Atomic blocker bugs." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"ទាំងនេះជារូបភាពផ្លូវការចុងក្រោយគេបំផុតរបស់ Fedora Atomic Host ផលិត " -"%(atomic_age)s ថ្ងៃមុន។" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "រូបភាព Atomic Host ។" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host " -"គឺជាជ្រុងមួយនៃផ្នែកប្រពន្ធ័ប្រតិបិត្តិការដែលនាំមុខគេបន្ទាប់ពីគម្រោងគំរូ " -"Atomic។ វារចនាឡើងនៅជុំវិញ Kubernetes និង កន្លែងផ្ទុក។ " - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"សូមសាកល្បងជាមុនសិន មុនពេលប្រើផលិតផល កំណែទម្រង់ថ្មី។​ " -"បើអ្នករកឃើញបញ្ហា Atomic Host tools " -"នឹងធ្វើឲ្យមានភាពងាយស្រួលក្នុងការត្រលប់មករកប្រពន្ធ័ដែលទើបតែចេញថ្មីៗវិញ — " -"ប្រសិនបើមានរឿងបែបនេះកើតឡើង ចូលជួយពួកយើងដោយបំពេញ bugs ឬ " -"រាយការណ៍នូវស្ថានភាពនេោះ។" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"រូបភាព Fedora Atomic Host ធ្វើឲ្យទាន់សម័យក្នុងរៀងរាល់ ២ " -"សប្តាហ៍ម្តង ជាជាង រាល់ ៦ខែម្តងរបស់ Fedora cadence. " -"ពីព្រោះតែការអភិវឌ្ឍន៍លឿន មានតែ Fedora ដែលធំ " -"ចេញចុងក្រោយគេបង្អស់តែប៉ុន្នោះដែលអាចគាំទ្របាន។" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"កំណត់ត្រាដែលខុសពី Fedora Atomic Host media " -"ត្រូវបានចាត់ចូលក្នុងកម្រិតខុសគ្នានៃ ការសាកល្បងដោយស័យប្រវត្តិ។ " -"អ្នកអាចរៀនបន្ថែមអំពីគម្រោង Atomic នៅ projectatomic.io. ចុចនៅទីនេះ ដើម្បីមើលការសាកល្បងថ្មីៗ។" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "រូបភាព​ Atomic Host សម្រាប់ Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"តំណរភ្ជាប់ខាងក្រោមនឹងផ្តល់ឲ្យអ្នកនូវតារាងនៃ Atomic Host Hardware Virtual " -"Machine (HVM)ដែលមាន AMIs " -"តាមតំបន់ជាមួយនឹងប៊ូតុងដើម្បីដំណើរការពួកវានៅក្នុងគណនីAmazon Web Services " -"របស់អ្នក។ AMI IDs សម្រាប់ប្រើជាមួយ AWS Console ឬ command-line tools " -"ត្រូវបានផ្លល់ឲ្យ។" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 Format" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"GP2 format AMIs ប្រើលឿនជាង SSD storage; ប្រើ AMIsទាំងនេះសម្រាប់ល្បឿនលឿន " -"តែតម្លៃសម្រាប់ការផ្ទុករបស់អ្នកនឹងលើសពីតម្លៃស្តង់ដារធម្មតា។" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "បិទ" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "តំបន់" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "ចាប់ដំណើរការ" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "ទ្រង់ទ្រាយស្តង់ដារ)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"ទ្រង់ទ្រាយស្តង់ដារ AMIs សាកសមច្រើនជាង ប្រសិនបើអ្នកមិនសូវភ្ជាប់ទៅទិន្នន័យ និង" -" ចង់រក្សាតម្លៃការផ្ទុកឲ្យនៅទាប។" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "ស្តង់ដារ HVM AMIs" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s Standard Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "ទ្រង់ទ្រាយស្តង់ដារ" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host Images for Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "ទាញយក View Vagrant " - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "ទាញយក Vagrant Image " - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"រូបភាពទាំងនេះគី Vagrant Boxes images សម្រាប់ប្រើប្រាស់ Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox Image" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"ប្រសិនបើអ្នកប្រើប្រាស់ Vagrant on Mac OS X or Windows, " -"នេះប្រហែលជារូបភាពដែលអ្នកច្រើនតែចង់ប្រើ។" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ទាញយក" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bit %sMB VirtualBox Base Vagrant Image" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM Image" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"ប្រសិនបើអ្នកប្រើប្រាស់ Vagrant លើ Fedora នេះជារូបភាពដែលអ្នកប្រហែលជាចង់ប្រើ។" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bit %sMB libvirt/KVM Base Vagrant Image" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "បង្ហាញការទាញយកប្រើប្រាស់ Vagrant tools" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Vagrant Downloads ប្រើប្រាស់ Vagrant tools" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"អ្នកអាចប្រើប្រាស់ការបញ្ជាបន្ទាប់នេះដើម្បីចាប់ រូបភាព Vagrant Box ពី HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"ប្រសិនជាអ្នកពីមុនធ្លាប់ដំណើរការ Fedora %(rel)s Atomic Host ក្នុង Vagrant " -"នៅលើម៉ាស៊ីនរបស់អ្នក " -"អ៊ីចឹងអ្នកអាចទាញយកកំណែទម្រង់ថ្មីចុងក្រោយគេបំផុតដោយដំណើរការ:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"សម្រាប់ពត៌មានបន្ថែមពីការដំណើរការ Vagrant លើ Fedora Workstation, មើល our wiki page។" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host Images សម្រាប់់ Cloud Environments" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 Image" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"នេះគឺ Fedora %(rel)s Cloud Atomic Host ក្នុងរូបភាព a Qcow2-formatted " -"សម្រាប់ប្រើជាមួយ OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Qcow2 Image" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw Image" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"នេះគី Fedora %(rel)s Cloud Atomic Host នៅក្នុងទ្រង់ទ្រាយ compressed raw " -"image ។ ប្រសិនជាអ្នកមិនច្បាស់ថាអ្វីដែលគួរប្រើ សាកល្បងមួយនេះ។" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB xz-Compressed Raw Image" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "ការទាញយកផ្សេងទៀត" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO image (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "សាកល្បង ប្រពន្ធ័ ដែលមុននឹងចេញជាផ្លូវការ" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "ពួកយើងកំពុងតែធ្វើការលើការចេញបន្ទាប់។" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "ជួយយើងក្នុងការធ្វើឲ្យ F%(rel)sបានសម្រេច !" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "ទាញយក F%(rel)s %(state)s images" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "វិធីក្នុងការសាកល្បង ប្រពន្ធ័ ដែលមុននឹងចេញជាផ្លូវការ" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "ធនធាន" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: ចាប់ផ្តើុម" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "កត់ត្រាទុកនូវការចាប់ផ្តើមប្រើប្រាស់គម្រោង Atomic / Atomic Host។" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Mailing List" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "ចូលរួមតារាងអ៊ីមែលខាងលើ atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC Chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"ចូលរួម Project Atomic channel #atomic on " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "ផ្ទៀងផ្ទាត់" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "ផ្ទៀងផ្ទាត់រូបភាពរបស់អ្នក" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "ទាញយក Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"ទាំងនេះជា Fedora Atomic Host imagesចុងក្រោយបំផុត, ផលិតលើ " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"នេះជា ការចេញមុននៃ software និង គាំទ្រដោយ Atomic " -"Working Group. សូមសួរផ្ទាល់ទៅកាន់ mailing " -"list or %(team_irc)s របស់ពួកគេលើ freenode។" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"បញ្ហាទាំងអស់ និង bugs គួរតែរាយការណ៍តាមរយៈ Red Hat " -"Bugzilla. គម្រោង Fedora មិនធានានូវ និរន្តភាព និង ប្រយោជន៍ របស់វានោះទេ។" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxesសម្រាប់ Fedora Atomic Host មានសម្រាប់ VirtualBox and Libvirt " -"providers. អ្នកអាចយក Fedora Atomic Host ដាក់ទៅក្នុង vagrant box " -"ដោយទាញយករូបភាពពី​ Fedora ឬ ប្រើប្រាស់ vagrant tools ដើម្បីទាញរូបភាពពី HashiCorp's Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"នេះគឺ Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted image " -"សម្រាប់ប្រើ OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"នេះគឺ Fedora %(rel)s %(state)s Cloud Atomic Host ក្នុងទ្រង់ទ្រាយ a " -"compressed raw image. ប្រសិនជាអ្នកមិនច្បាស់ថាអ្វីដែលគួរប្រើ សាកល្បងមួយនេះ។" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - មិនអាចស្វែងរកទំព័របាន" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: មិនអាចស្វែងរកទំព័របាន" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "ពួកយើងសូមអភ័យទោស ប៉ុន្តែ file ទំព័រដែលអ្នកស្នើរមិនអាចស្វែងរកបាន។" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Troubleshooting Ideas" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"ឆែកមើល URL ប្រសិនអ្នកវៃបញ្ចូលខ្លួនឯង។ តើអ្នកបានចម្លងវាបានត្រឹមត្រូវឬទេ?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Bad Link? Contact the webmaster " -"ហ់ើយពន្យល់ថាតំណរភ្ជាប់ណានាំអ្នកមកទីនេះ។" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"ទំព័រ ឬ file នេះប្រហែលជាត្រូវដូរចេញ main site ឬ " -"រកមើល wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Package Signing Keys" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"ទំព័រនេះរាយឈ្មោះ the public GPG keys ប្រើសម្រាប់ singing packages ក្នុង " -"Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "ស្វែងយល់ថា Fedora ការពារអ្នកយ៉ាងដូចម្តេច។" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora ប្រើប្រាស់ GPG package signing ដើម្បីប្រាកដថា package integrity " -"មិនមានលើកលែងចំនុចណាមួយឡើយ។" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "អាចសំនួរចម្លើយ និងស្វែងយល់បន្ថែម »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Currently Used Keys" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primary" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secondary" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "រកមើល obsolete keys?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Obsolete Package Signing Keys" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"ទំព័ររាយ the public GPG keys មិនប្រើប្រាស់ទៀតទេសម្រាប់ signing packages " -"ក្នុង Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Obsolete and Unused Keys" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG key" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html " -"សម្រាប់ពត៌មានថាហេតុអ្វីបានជាសោរនេះលែងត្រូវបានប្រើប្រាស់។" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"បើអ្នកចូលរួមក្នុងការសាកល្បង packages, នោះគីជា Key " -"របស់អ្នកដើម្បីប្រើក្នុងការផ្ទៀងផ្ទាត់ការសាកល្បង packages. Key នេះជាសញ្ញា " -"packages ដែលនៅក្នុង fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html " -"សម្រាប់ពត៌មានថាហេតុអ្វីបានជាសោរនេះលែងត្រូវបានប្រើប្រាស់។" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"ប្រសិនជាអ្នកប្រើ Fedora Extras with Fedora Core 6, ប្រើ package " -"នោះពីកន្លែងផ្ទុកextras. Key " -"នេះលែងប្រើប្រាស់បន្តទៀតបន្ទាប់ពី Fedora Core 6 និង Extras ឡើងដល់ EOL (ធ្នូ " -"7th 2007). Key នេះមិនបានរួមបញ្ជូល fedora-release package " -"ក្នុង Fedora 7 នឹងការចេញចុងក្រោយគេបំផុត។" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Key នេះ ត្រូវបានប្រើសម្រាប់ packages ដែលទើបតែចេញដោយ Fedora Legacy project " -"ដើម្បីធ្វើឲ្យទាន់សម័យនៃការចេញថ្មីដែលឡើង official EOLរបស់ពួកគេ. គម្រោង Fedora" -" Legacy លែងមានតទៅទៀតហើយ ដូច្នេះKeyនេះមិនត្រូវបានប្រើដើម្បីចូលទៅក្នុង " -"packagesតទៅទៀតទេ។ Key នេះមិនរួមបញ្ជូលទៅក្នុង fedora-release" -" package ក្នុង Fedora 7 និងការចេញថ្មីបន្ទាប់ឡើយ។" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Package Signing FAQ" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"ស្វែងយល់ពីវិធីដែល Fedora ប្រើ GPG ចូលក្នុង packages " -"ដើម្បីប្រាកដពីសុវត្ថិភាពរបស់អ្នក។" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "តើ គម្រោង Fedora ប្រើ GPG keys ដើម្បីចូល packages យ៉ាងដូចម្តេច?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"stable RPM package នីមួយៗ ដែលចេញដោយ គម្រោង Fedora ត្រូវចូលជាមួយ GPG " -"signature. ដោយមានស្រាប់ dnf tools និងក្រាហ្វិកទាន់សម័យ នឹង " -"ជួយផ្ទៀងផ្ទាត់សញ្ញាទាំងនេះ នឹងបរិសេធនូវការដំឡើងនៃ packages " -"នានាដែលមិនបានចុះឈ្មោះ ឬ មានសញ្ញាមិនត្រឹមត្រូវ។ " -"អ្នកគួរតែតែងតែផ្ទៀងផ្ទាត់នូវសញ្ញានៃ​ package " -"មុននឹងអ្នកតម្លើងវា។សញ្ញាទាំងនេះប្រាកដថា packages អ្នកតម្លើងជាអ្វីដែលផលិតដោយ " -"គម្រោង Fedora និងមិនត្រូវបានផ្លាស់ប្តូរ (ដោយយថាហេតុ ឬ ចេតនាអាក្រក់) ដោយ " -"mirror ឬ វេបសាយនានា ដែលផ្តល់ packages។" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Packages ដែលអាចទាញបានពី Koji បង្កើតប្រពន្ធ័ដែលមិនមានសញ្ញា " -"ដូច្នេះអ្នកត្រូវប្រើវាដោយប្រុងប្រយត្ន័។ ស្រដៀងគ្នានេះ bleeding-edge " -"packages ក្នុង Rawhide មិនចាំបាច់ក្នុងការចុះឈ្មោះ។" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "ការបញ្ជូល keys" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"The keys ដែលរួមមាន fedora-release package " -"អ្នកអាចរកពួកវានៅក្នុង កន្លែងផ្ទុក/etc/pki/rpm-gpg. " -"ចូរចាំថា keys ទាំងអស់នៅក្នុងកន្លែងផ្ទុកមិនប្រើដោយគម្រោង​ Fedora​ ទេ -- " -"ខ្លះបានប្រើសម្រាប់ចូលទៅក្នុង Red Hat Enterprise Linux packages " -"ឬមិនប្រើប្រាស់តទៅទៀតនោះទេ។ ប្រសិនជាអ្នកប្រើ Red Hat Enterprise Linux " -"packages មើល https://www.redhat.com/security/team/key. " -"The keys ប្រើដោយ Fedoraអាចដាក់ឲ្យដំណើរការក្នុងរូបសណ្ឋានកន្លែងផ្ទុក dnf " -"ដូច្នេះអ្នកអាចជាទូទៅមិនត្រូវការវាយនឹងដៃដើម្បីបញ្ជូលពួកវាទៅក្នុង rpm " -"database." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"បន្ថែមពីលើ fedora-release package នឹងវេបសាយនេះ អ្នកអាចទាញយក Fedora keys ពី " -"public key server ដូចជា keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"សម្រាប់កន្លែងមួយចំនួន ដូចជាកន្លែង packages ដែលរឹងមាំ និង សាកល្បងបាន " -"និងរូបសណ្ឋានដែលមានស្រាប់ dnf អាចរកបាន key សមរម្យ " -"សម្រាប់កន្លែងដែលសួរទៅកាន់អ្នកប្រើប្រាស់ដោយបញ្ជាក់មុនពេលបញ្ជូល key ប្រសិន key" -" មិនទាន់បញ្ជូលទៅក្នុង rpm database។" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "អ្នកអាចបញ្ជូល key ទៅក្នុង RPM's database ដោយវាយដៃប្រើបញ្ជាតទៅនេះ:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "សំដៅទៅ rpm ក្បួនសម្រាប់ពត៌មានបន្ថែម។" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"ប្រសិនជាអ្នកចង់ផ្ទៀងផ្ទាត់ keys ដំឡើងលើប្រពន្ធ័ គូរផ្គងនឹង keys " -"មានរាយនៅទីនេះ អ្នកអាចប្រើ GnuPG ដើម្បីមើលស្នាមប្រយ៉ៅដៃលើ key " -"គូផ្គង។​ឧទាហរណ៍:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "ទាញយក Fedora Server: បចេ្ចកទេសចុងក្រោយបំផុតនៃ apps នឹង សេវាកម្ម" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "រដ្ខបាលងាយស្រួល" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"គ្រប់គ្រងប្រពន្ធ័របស់អ្នកយ៉ាងសាមញ្ញជាមួយ Cockpit's powerful " -"ទំនាក់ទំនងទាន់សម័យ។ បង្ហាញ​ និង ត្រួតពិនិត្យការប្រព្រឹត្តិទៅនៃប្រពន្ធ័ " -"និងស្ថានការណ៍ ពង្រាយ និង គ្រប់គ្រង សេវាកម្ម container-based។" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Database Services" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server នាំមកជាមួយនូវ ថ្នាក់សហគ្រិនភាព, database server ដែលពង្រីកបាន " -"powered by the open-source PostgreSQL project." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Complete Enterprise Domain Solution" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "រួចរាល់ក្នុងការសាកល្បង Fedora Server ហើយឬនៅ?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "ទាញយក Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "ទាញយក Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB installation image" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"The Fedora Server installation image " -"អនុញ្ញាតឲ្យអ្នកធ្វើការផ្សព្វផ្សាយសម្រាប់កុំព្យូទ័ររបស់អ្នកដែលបើកឲ្យអ្នកដំឡើង" -" ដំឡើងផ្ទាល់នូវ Fedora Server លើ hard drive របស់អ្នក" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"ដើម្បីប្រើរូបភាពនេះ អ្នកត្រូវការ drive ដែលអាចបង្កើត ឬ \"burn\" DVDs, ឬ USB " -"flash drive យ៉ាងតិចណាស់ត្រូវមានទំហំធំជាងរូបភាព។" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall Image:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit %sMB image" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "ទាញយក F%(rel)s Alpha images" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "ទាញយក F%(rel)s Beta images" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "ទាញយក Fedora ច្រើនទៀត" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® Technology" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "តើខ្ញុំធ្វើយ៉ាងមេ្តចទើបអាចឲ្យ Live image ក្លាយទៅជា bootable media?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"បន្ទាប់ពីអ្នកទាញយករូបភាព អ្នកនឹងបង្កើត bootable media ពីវា។ ឬ burn the image to a blank DVD disc, or write " -"the image to a USB flash drive." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "តើខ្ញុំអាចបើកវាតាម mediaបានឬទេ?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"ពិភាក្សាជាមួយកំណត់ត្រានៃប្រពន្ធ័កុំព្យូទ័ររបស់អ្នកសម្រាប់នីតិវិធីដើម្បីបើកពី" -" media ជាជាងតំឡើងក្នុង hard disk។ ដំណើរការក្នុងការធ្វើ គឺទៅតាមឧស្សាហករ " -"និងម៉ូឌែលកុំព្យូទ័ររបស់អ្នក។ អ្នកអាចស្វែងរកthese common " -"tips មានប្រយោជន៍សម្រាប់អ្នក។" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit %sGB Installation Image" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"នោះគីជា software មុនពេលចេញដាក់ឲ្យប្រើប្រាស់ និងគាំទ្រដោយ Server Working Group. សូមផ្តល់សំនួរផ្ទាល់ទៅពួកគេ " -"mailing list or %(team_irc)s freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"អាន កំណត់ត្រាថ្មី " -"សម្រាប់ពត៌មានបន្ថែមក្នុងការប្តូរ និង featuresថ្មី និង Common Bugs ទំព័រសម្រាប់ពត៌មាន លើ commonly-" -"encountered bugs និងរបៀបចៀសពីវា។" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "នៅពេលណាដែល Fedora %s នឹងចេញ?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "សូមអាននៅរាល់គន្លឹះព្រឹត្តិការណ៍សំខាន់ៗនៃកាលវិភាគដែលនឹងចេញ..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"ពេលដែលអ្នកបានទាញយករូបភាពរួចហើយ ផ្ទៀងផ្ទាត់វាដើម្បីសុវត្ថិភាព និងសុច្ចរិតភាព។\n" -"ដើម្បីផ្ទៀងផ្ទាត់រូបភាពរបស់អ្នក ចាប់ផ្តើមដោយទាញយក CHECKSUM​ file សមរម្យមួយ ដាក់ទៅក្នុងប្រអប់ឯកសារដូចគ្នាដែលអ្នកដាក់រូបភាពដែលអ្នកទាញយកនោះ និងស្តាប់តាម ការណែនាំ។" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"ទាញយក Fedora Workstation: desktop OS ល្អបំផុត សម្រាប់ អ្នកអ្នកដែលធ្វើការតម្លើងប្រពន្ធ័ប្រូក្រាមកុំព្យូទ័រ\n" -" software" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "នេះគឺ Linux workstation ដែលអ្នករង់ចាំ។" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation គឺអាចជឿជាក់បាន ងាយស្រួលប្រើ " -"និងជាប្រពន្ធ័កុំព្យូទ័រដែលមានកម្លាំងខ្លាំងលើ កុំព្យូរទ័រដៃ " -"និងកុំព្យូរទ័រលើតុ។ " -"វាប្រើបានដោយអ្នកដែលធ្វើការតម្លើងប្រពន្ធ័ប្រូក្រាមកុំព្យូទ័រ ពី " -"អ្នកដែលចូលចិត្ត នឹងសិស្ស ទៅដល់ សាស្រ្តាចារ្យ ក្នុងវិស័យពាណិជ្ជកម្ម។" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“The plethora of tools ផ្តល់ឲ្យដោយ
Fedora " -"ធ្វើឲ្យខ្ញុំអាចធ្វើការបានសម្រេច
It just works.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM performance engineer" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Sleek user interface" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"យកចិត្តទុកដាក់លើកូដរបស់អ្នក GNOME 3 desktop environment. GNOME " -"បង្កើតឡើងជាមួយនឹងយោបល់ និង ការកាត់បន្ថយនៃការរំខាន " -"ពីអ្នកដែលធ្វើការតម្លើងប្រពន្ធ័ប្រូក្រាមកុំព្យូទ័រ " -"ដូច្នេះអ្នកអាចយកចិត្តទុកដាក់លើអ្វីដែលសំខាន់។" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "បំពេញ open source toolbox" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"កុំរុញរាក្នុងការព្យាយាមស្វែងរក និងបង្កើត tools ដែលអ្នកត្រូវការ។ជាមួយ " -"Fedora's complete set នៃ open source ភាសា tools​ និង អត្ថប្រយោជន៍ " -"អ្វីៗទាំងអស់គឺនៅក្នុងពេលដែលអ្នកគ្រាន់តែចុច ឬបញ្ជា តណរភ្ជាប់។ " -"ហើយថែមទាំងមានគម្រោង hosting នឹង កន្លែងដូចជា COPR ដែលធ្វើឲ្យកូដរបស់អ្នក " -"និងបង្កើតលឿននៅក្នុងសហគនម៍។" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes & other virt tools" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"ដំឡើងម៉ាស៊ីន ហើយដំណើរការសាកល្បងនូវ កូដលើរចនាសម្ពន្ធ័ច្រើនប្រើប្រាស់ GNOME " -"Boxes។ ឬរកមើលបន្ថែមលើ toolsដែលអាចប្រូក្រាមបាន ហើិយដែលមានកម្លាំងខ្លាំង " -"សម្រាប់ការគ្រប់គ្រងកាន់តែប្រសើរ។" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Built-in Docker support" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"ផ្ទុកនូវ apps របស់អ្នកខ្លួនឯង, ឬ ពន្លាត apps ដែលផ្ទុកនោះពីប្រអប់នៅលើ Fedora " -"ប្រើបច្ចេកវិជ្ជាចុងក្រោយដូចជា Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "រួចរាល់ក្នុងការសាកល្បង Fedora Workstation ?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "ទាញយក Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "ទាញយក Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer សម្រាប់ Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO សម្រាប់ Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writerសម្រាប់ Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "ទាញយក Fedora Media Writer សម្រាប់ប្រពន្ធ័កុំព្យូទ័ររបស់អ្នក។" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "ត្រូវការការណែនាំ? ឬកំណែទម្រង់ថ្មីខុសពីនេះ?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "ដំណើរការ Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "ដំណើរការ Fedora Workstation អ្នកត្រូវការ:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (ទាញយកនៅខាងលើ)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "A USB Flash drive ត្រូវការមានកន្លែងទំនេរ %s GB " - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"ជាជម្រើស អ្នកអាចតម្លើង Fedora Workstation ទៅក្នុងកុំព្យូទ័រដៃ និង " -"លើតុរបស់អ្នក​ដែលមានយ៉ាងតិចណាស់មានកន្លែងទំនេរ 1 GHz processor, 1 GB RAM, និង " -"10 GB ។ ដើម្បីធ្វើវា តម្លើង live version នៃ Fedora Workstation ពី USB flash " -"drive នៅលើកុំព្យូទ័ររបស់អ្នកដែលអ្នកចង់តម្លើងវា ដំឡើង Fedora Media Writer " -"application ហើយ ធ្វើតាម on-screen ដើម្បីបញ្ចប់ការតម្លើងរបស់អ្នក។" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Supported Platforms" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer គាំទ្រនូវរចនាសម្ពន័ជាមូលដ្ឋានតទៅនេះ:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"ពួកយើងមាន auto-detected ដែលអ្នកអាចតម្លើង Mac OS X " -"និងផ្តល់ឲ្យនូវ version សម្រាប់តម្លើង។ " -"​ប្រសិនជាេពួកយើងស្រាវជ្រាវប្រពន្ធ័កុំព្យូទ័រអ្នកខុស ឬអ្នកចង់ទាញយក " -"កំណែទម្រង់ខុសពីនេះ សូមចុចលើ ប៊ូតុង \"View all platform downloads\" ខាងក្រោម។" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"ពួកយើងមាន auto-detected ដែលអ្នកអាចតម្លើង Linux​ " -"និងផ្តល់ឲ្យនូវ version សម្រាប់តម្លើង។ " -"​ប្រសិនជាេពួកយើងស្រាវជ្រាវប្រពន្ធ័កុំព្យូទ័រអ្នកខុស ឬអ្នកចង់ទាញយក " -"កំណែទម្រង់ខុសពីនេះ សូមចុចលើ ប៊ូតុង \"View all platform downloads\" ខាងក្រោម។" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"ពួកយើងមាន auto-detected ដែលអ្នកអាចតម្លើង Mac OS X " -"និងផ្តល់ឲ្យនូវ version សម្រាប់តម្លើង។ ​ប្រសិនជាេពួកយើងពួកយើងមាន auto-" -"detected ដែលអ្នកអាចតម្លើង Windows និងផ្តល់ឲ្យនូវ version " -"សម្រាប់តម្លើង។ ​ប្រសិនជាេពួកយើងស្រាវជ្រាវប្រពន្ធ័កុំព្យូទ័រអ្នកខុស " -"ឬអ្នកចង់ទាញយក កំណែទម្រង់ខុសពីនេះ សូមចុចលើ ប៊ូតុង \"View all platform " -"downloads\" ខាងក្រោម។" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "បង្ហាញនូវរចនាសម្ពន័នៃការទាញយក" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "មាននៅ DNF for Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "ពត៌មានលម្អិតបន្ថែម" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "តើប្រើ ISO នោះយ៉ាងដូចម្តេច?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "ផ្ទៀងផ្ទាត់រូបភាពនេះ" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit %sGB Live image" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall Images:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit %sMB image" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Release Announcement" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "អានការប្រកាសចេញថ្មីលើ ទស្សនាវដ្តី Fedora។" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "កំណត់ចំណាំដែលចេញ" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"ស្វែងយល់បន្ថែមពីការផ្លាស់ប្តូរ ទីតាំងពីកំណែទម្រង់ចាស់របស់ Fedora " -"ក៏ដូចជាការតម្រូវឲ្យមាន និងការឲ្យយោបល់ដើម្បីដំណើរការ Fedora។" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" -"ការណែនាំក្នុងការតម្លើង " - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"ពួកយើងឲ្យយោបល់អ្នកចូលមើលឲ្យគ្រប់មុននឹងតម្លើងទៅក្នុងប្រពន្ធ័របស់អ្នក " -"ពីព្រោះវាឆ្លើយនូវសំនួរដែលតែងតែកើតមានជាច្រើន។" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Common Bugs" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"ជាធនធានដ៏ល្អដើម្បីការពិភាក្សា ក្នុងករណីដែលអ្នកមានបញ្ហាផ្សេងៗក្នុងការតម្លើង " -"និងដំណើរការ Fedora។" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "តើ\"Live\" មានន័យយ៉ាងដូចម្តេច?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer នឹងបង្កើត Fedora Workstation ពេញលេញ និង ដំណើរការ " -"ដែលអ្នកអាចដំណើរការបានភ្លាមពី USB drive។ អ្នកអាចប្រើ Live image ដើម្បីសាកល្បង" -" និងបង្ហាញជាមួយ Fedora ដោយមិនចាំបាច់ក្នុងការផ្លាស់មប្តូរ hard disk។" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"នៅពេលដែលអ្នករួចរាល់ អ្នកអាចតម្លើង Fedora ទៅក្នុង hard disk របស់អ្នកនៅក្នុង " -"\"live\" version នេះ នៃ Fedora Workstation។" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "ទាញយក Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "ទាញយក Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"នេះជា ការចេញមុននៃ software និង គាំទ្រដោយ Workstation Working Group. សូមសួរផ្ទាល់ទៅកាន់ mailing list or %(team_irc)s របស់ពួកគេលើ " -"freenode។" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "ដំណើរការ កំណែទម្រង់ថ្មីដែលមានមុនថ្ងៃត្រូវចេញនៃ Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"ដើម្បីដំណើរការ កំណែទម្រង់ថ្មីដែលមានមុនថ្ងៃត្រូវចេញ នៃ Fedora Workstation " -"អ្នកនឹងត្រូវការ:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (ទាញយកអ្វីដែលមានខាងក្រោម)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"A live image ISO នៃ កំណែទម្រង់ថ្មីដែលមានមុនថ្ងៃត្រូវចេញ នៃ " -"Fedora អ្នកមានបំណងចង់ដំណើរការ" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ប្រុងប្រយត្ន័: និតិវិធីនេះនឹងបំផ្លាញនូវរាល់ទិន្នន័យនៅលើ USB media របស់អ្នក។ " -"ត្រូវប្រាកដថាអ្នកបានទុកដាក់នូវ files សំខាន់ពីUSB media " -"របស់អ្នកមុនពេលដែលធ្វើវា។ " - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "ទាញយក Fedora Media Writer app ខាងក្រោម។" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "ទាញយក the desired ISO image។" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"បើក Fedora Media Writer app។ " -"អ្នកត្រូវការវាយពាក្យសម្ងាត់របស់អ្នកដើម្យីអនុញ្ញាតឲ្យ app " -"មានសិទ្ធិត្រឹមត្រូវចូលទៅក្នុង។ " - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "រើសយក \"Custom OS...\" ពីតារាង។" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "លើទំព័រ Custom OS រើសយកប៊ូតុង \"Select Live ISO\" ។" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "នៅក្នុង​ file selection window, រកមើល នឹងរើស ISO image ដែលអ្នកទាញយក។" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"ដោត USB stick របស់អ្នកទៅក្នុងកុំព្យូទ័រ។ ប្រសិនបើអ្នកប្រើ USB stick " -"របស់អ្នកពីមុនដើម្បីបង្កើត live media អ្នកគួរតែយកមកវិញនូវ factory settings។ " -"App នឹងសួរអ្នកថាគួរតែធ្វើបែបនេះឬក៏អត់នៅក្នុងករណីនេះ។" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"ជ្រើស \"Create Live USB\" ដើម្បីសរសេររូបភាព. ចាំរហូតទាល់តែរួចរាល់ " -"មុនពេលអ្នកដកចេញ និងបិទ app។" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"របៀបសាកល្បងកំណែទម្រង់ថ្មីដែលមានមុនថ្ងៃត្រូវចេញ " -"" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Fedora wiki guide លើវិធីក្នុងការសាកល្បង " -"កំណែទម្រង់ថ្មីដែលមានមុនថ្ងៃត្រូវចេញរបស់ Fedora។" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architecture" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "ដំណើរការ AMI instance" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "រើសយកតំបន់ដែលនៅជិតបំផុត" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "ចាប់ផ្តើមដំណើរការវា!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "ទាញចេញនូវបទបញ្ជា" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "អានបទបញ្ជាដែលទាញចេញមក" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"ដោយចុចលើ និងទាញយក Fedora អ្នកយល់ព្រម និងអនុវត្តតាមនូវ ខ " -"និងលក្ខខណ្ឌដូចតទៅនេះ។" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "អានបន្តែម >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "អំពី" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "អំពី Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "អ្នកឧបត្ថម្ភ" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "ទស្សនាវដ្តី Fedora " - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "ច្បាប់" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "ទាញយក Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "ទាញយក Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "ទាញយក Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "ជម្រើសក្នុងការទាញយកផ្សេងទៀត" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "គាំទ្រ" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "ត្រូវការជំនួយ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "សួរ Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Common Bugs" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora Developer Portal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "ការណែនាំក្នុងការតម្លើង" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "ចូលរួម" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "ចូលរួមជាមួយ Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora Account System" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "សហគមន៏ Fedora " - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora ត្រូវបានឧបត្ថម្ភដោយ Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "ស្វែងយល់បន្ថែមពីទំនាក់ទំនងរវាង Red Hat និង Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. និង ដទៃទៀត។" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"សូមផ្ងើរយោបល់ ឬ ការកែតម្រូវទៅ websites team." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "ផ្លាស់ប្តូរភាសា" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"មានបន្ថែមទៀតនៅ \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "តូច. កម្លាំងខ្លាំង. Everycloud រួចរាល់." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"បច្ចេកវិជ្ជាចុងក្រោយ។ គ្រឹះរឹងមា។ ទាំងអស់គ្នាសម្រាប់ applications និង " -"សេវាកម្មរបស់អ្នក។​" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "កំណត់ត្រា និង ធាធានដទៃទៀតរួចរាល់" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "វិធីផ្សេងទៀតក្នុងការយក media" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"អ្នកអាចទិញ ​installation media សម្រាប់ Fedora ពី online " -"vendors or a local vendor នៅក្នុងតំបន់របស់អ្នក។" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"មិនមានលទ្ធភាពចំណាយលើ installation media? ស្នើរ Fedoraក្នុងការ តម្លើង media " -"ពី Fedora Free Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG Key Information" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Key ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "ស្នាមម្រាមដៃ" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "យកវាមកពី:" diff --git a/getfedora.org/po/kn.po b/getfedora.org/po/kn.po deleted file mode 100644 index 0b03c8b..0000000 --- a/getfedora.org/po/kn.po +++ /dev/null @@ -1,2446 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:25-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "ಫೆಡೋರದ ಪ್ರಾಯೋಜಕರು" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "ನಂತರ, ಫೆಡೋರದ GPG ಕೀಲಿಯನ್ನು(ಗಳನ್ನು) ಆಮದು ಮಾಡಿಕೊಳ್ಳಿ:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "ಈಗ, CHECKSUM ಕಡತವು ಮಾನ್ಯವಾದುದಾಗಿದೆಯೆ ಎಂದು ಪರಿಶೀಲಿಸಿ:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM ಕಡತವು ಈ ಕೆಳಗಿನ ಕೀಲಿಗಳಿಂದ ಒಂದು ಉತ್ತಮವಾದ ಸಹಿಯನ್ನು ಹೊಂದಿರಬೇಕು:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"URL ಅನ್ನು ನೀವು ಕೈಯಾರೆ ನಮೂದಿಸಿದ್ದರೆ ಇನ್ನೊಮ್ಮೆ ಪರಿಶೀಲಿಸಿ. ನೀವು ಅದನ್ನು ಸರಿಯಾಗಿ " -"ಕಾಪಿ ಮಾಡಿದಿರೆ?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "ಕೀಲಿಗಳನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳಲಾಗುತ್ತಿವೆ" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"ಈ ಕೆಳಗಿನ ಆಜ್ಞೆಯನ್ನು ಬಳಸಿಕೊಂಡು ನೀವು ಯಾವಾಗಬೇಕೆಂದರೂ ಒಂದು ಕೀಲಿಯನ್ನು RPM ನ ದತ್ತ " -"ಸಂಚಯಕ್ಕೆ ಆಮದು ಮಾಡಿಕೊಳ್ಳಬಹುದು:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ rpm ಮಾರ್ಗದರ್ಶಿಯನ್ನು ಸಂಪರ್ಕಿಸಿ." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"ಇಲ್ಲಿ ಪಟ್ಟಿ ಮಾಡಲಾದ ಕೀಲಿಗಳು ನಿಮ್ಮ ಗಣಕದಲ್ಲಿ ಅನುಸ್ಥಾಪಿಸಲಾದ ಕೀಲಿಗಳಿಗೆ " -"ತಾಳೆಯಾಗುತ್ತವೆಯೆ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು, ನೀವು ಆ ಕೀಲಿಯ ಫಿಂಗರ್-ಪ್ರಿಂಟ್‌ " -"ತಾಳೆಯಾಗುತ್ತವೆಯೆ ಎಂದು GnuPG ತಿಳಿದುಕೊಳ್ಳಬಹುದಾಗಿದೆ. ಉದಾಹರಣೆಗೆ:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "ಇದರ ಬಗ್ಗೆ" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "ಪ್ರಾಯೋಜಕರು" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "ನೆರವನ್ನು ಪಡೆದುಕೊಳ್ಳಿ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "ಫೆಡೋರದಲ್ಲಿ ಸೇರ್ಪಡೆಗೊಳ್ಳಿ" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ko.po b/getfedora.org/po/ko.po deleted file mode 100644 index 04efc8a..0000000 --- a/getfedora.org/po/ko.po +++ /dev/null @@ -1,2501 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# MinWoo Joh , 2015. #zanata -# MinWoo Joh , 2016. #zanata -# MinWoo Joh , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-12-28 10:38-0500\n" -"Last-Translator: MinWoo Joh \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" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "규칙" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "규칙" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "커뮤니티의 일원으로 활동하시려면 규칙을 지켜주세요." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "규칙" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora 커뮤니티는 전세계의 전문가와 자원자들의 모임이며, 프로그래밍부터 마케팅까지 Fedora의 모든 배포과정에 참여하고 있습니다." -" 다양성은 우리의 가장 강력한 힘 중 하나지만, 이는 소통문제와 서로 간의 불화로 이어질 수 있습니다. 이를 막기 위해, 여프로젝트 " -"자원을 사용하는 모든 사람들에게 몇 가지 규칙을 당부하려 합니다." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"실천하기 힘든 복잡한 것들이 아닙니다. 이것이 만들어진 이유, 곧 서로를 배려하기 위한 것을 생각하며 실천해주셨으면 합니다." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"항상 신중해야 합니다. 여러분의 작품을 다른 사람이 사용할 것이고, 반대로 여러분이 다른 사람의 것을 사용할 수도 있습니다. 결정하는" -" 모든 것이 다른 사용자들과 동료들에게 영향을 주기에 항상 신중해야 합니다." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"서로를 존중합시다. 언제나 만장일치가 이루어질 수는 없지만, 의견의 차이가 나쁜 행동에 대한 변명이 될 수 없습니다. 지금 그리고 앞으로" -" 좌절감을 맛볼 수도 있지만, 좌절감을 인신 공격으로 표출하는 것은 용납되지 않습니다. 사람들이 불편해하거나 위협을 느끼는 공동체는 " -"생산적이지 못함을 기억하십시오. Fedora 공동체의 구성원은 다른 기여자와 공동제 내외부의 사람들을 항상 존중해야 합니다." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"불화가 있을 땐 우린 그 이유를 이해하려 합니다. 불화는 사회적으로나 기술적으로나 언제나 일어나고, Fedora도 예외가 아닙니다. " -"반대 의견들과 서로 다른 시각들을 체계적으로 해결하는 것은 매우 중요합니다." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"우리가 서로 다른다는 것을 기억하십시오. Fedora의 힘은 다양한 커뮤니티, 폭넓은 배경을 가진 사람들로부터 비롯합니다. 여러 일에 " -"대해 서로 다른 사람들은 다른 관점을 가집니다. 다른 이가 왜 그렇게 생각하는지 이해하지 못하는 것은 그가 틀렸다는 것이 아닙니다. " -"사람들은 언제나 실수할 수 있다는 것. 서로를 탓하는 것이 아니라, 대신 도움을 건네는 것이 실수로부터 교훈을 얻고 문제를 해결해준다는 " -"것을 기억하세요." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "Fedora: 개발자, 데스크톱, 컨테이너, 그리고 그 이상을 위한 리눅스 기반 OS" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Choose Freedom. Choose Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "설정은 적게, 보다 혁신적이게. 원하시는 Fedora

를 선택하고, 바로 작업에 돌입하세요." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s가 릴리즈 되었습니다! 다운로드 섹션에서 테스트 해보세요." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s 가 릴리즈 되었습니다! 바로 사용하세요." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "워크스테이션" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "지금 다운로드" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"페도라 워크스테이션은 노트북과 데스크톱을 위한 쉽고 강력한 운영체제이며, 모든 개발자와 제작자를 위한 도구들을 완비하고 있습니다." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "다운로드" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "서버" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"페도라 서버는 최고, 최신의 데이터 센터 기술들을 포함한 강력하고 유연한 운영체제입니다. 사용자가 모든 인프라시스템과 서비스를 실시간으로" -" 통제할 수 있도록 설계되어 있습니다." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "페도라 프로젝트라는 이름으로 모인 커뮤니티가 개발하며, 누구나 사용하고, 편집하고, 배포할 수 있습니다." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "더 많은 종류의 Fedora를 원하시나요?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora 커뮤니티는 이외에도 ARM 이미지, " -"라이브 스핀, 그리고 특정 수요에 맞춘 다양한 Fedora를 배포합니다. Fedora Spins 또는 Fedora Labs 웹사이트에서 찾아보세요." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "저희와 함께하세요." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "문서를 읽어보세요." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"현재 릴리즈의 자세한 사항을 확인하세요. 공식 문서를 통하여 " -"Fedora 사용법과 설치 요구사항 등을 확인하세요. " - -#: data/content/index.html:243 -msgid "Get help." -msgstr "도움을 요청하세요." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Fedora를 사용하는데 도움이 필요하시나요? Ask Fedora에서 다른 사람들의 질문을 확인하시거나" -" 직접 질문을 올리실 수 있습니다." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora 후원사" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Fedora 프로젝트는 다음의 자랑스러운 단체들로부터 후원받고 있습니다..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "주요 후원사" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. 는 페도라 프로젝트의 주요 후원사입니다. Red Hat사는 실시간 지원, " -"인프라 장비와 대역폭, 이벤트 후원, 그리고 법적 지원과 같은 다양한 자원을 지원합니다." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "다음의 회사들도 본 프로젝트에 감사한 지원을 아끼지 않고 있습니다:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Fedora를 후원하고 싶으신가요?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"admin@fedoraproject.org에 연락하시거나 " -"irc.freenode.net에서 #fedora-admin 을 방문하세요." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "다운로드한 ISO를 검증하세요" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM과 인증 설명서" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "다운로드한 이미지를 어떻게 검증하나요?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"ISO을 다운로드 하신 뒤 보안과 무결성을 위해 파일을 검증하세요. 검증하시려면, 적절한 CHECKSUM파일을 같은 디렉토리에 " -"다운로드하세요. " - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "64비트 이미지" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "32비트 이미지" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "다음으로 Fedora의 GPG 키를 가져옵니다: " - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "GPG 키의 상세 부분은 여기에서 검증할 수 있습니다." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "이제 CHECKSUM 파일이 유효한지 확인합니다: " - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM 파일은 다음 키 중 하나에서 적절한 서명을 갖고 있어야 합니다: " - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "이제 CHECKSUM 파일이 검증되었으니, 이미지의 체크섬과 일치하는지 확인하세요:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "파일이 유효하다고 출력된다면, 사용하실 수 있습니다!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "다른 운영체제에 다운로드한 ISO파일을 어떻게 검증하나요?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Fedora를 사용해주셔서 감사합니다!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "이제 다운로드를 시작하겠습니다. 시작되지 않는다면 아래의 링크를 클릭하세요:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "다운로드를 검증하세요!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "이들은 %(atomic_age)s 일 전에 만들어진 최신 공식 Fedora Atomic Host 이미지들 입니다." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host 이미지" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "닫기" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "지역" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "실행" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "표준 HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host Images for Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "가상머신 이미지" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "Mac OS X 또는 Windows에서 Vagrant를 사용하고 계시다면, 이 이미지를 사용하세요." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "다운로드" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM 이미지" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Fedora에서 Vagrant를 사용하고 계시다면, 이 이미지를 사용하세요." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 이미지" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64비트 %sMB Qcow2 이미지" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "RAW 이미지" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Fedora %(rel)s 클라우드 Atomic 호스트가 raw 이미지 형식으로 압축되어 있습니다. 무엇을 사용할지 모르겠다면, 이것을 " -"사용하세요." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "압축된 64비트 %sMB Qcow2 RAW 이미지" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "다른 다운로드" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "검증" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "이미지를 검증하세요" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - 페이지를 찾을 수 없음" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Page Not Found" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "죄송합니다, 요청하신 자료나 페이지를 찾을 수 없습니다." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "문제 해결" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "수동으로 URL을 입력하실 경우 입력 내용을 다시 확인해주세요. 올바르게 입력하셨나요? " - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "잘못된 링크인가요? the webmaster에게 연락하여 수정하여 주세요." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"페이지나 파일이 옮겨진 것 같습니다. main site에서 확인하시거나 wiki를 검색해보세요." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "패키지 서명 키" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "이 페이지는 패키지 서명에 쓰이는 GPG키의 목록을 표시합니다." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Fedora의 보안 장치를 알아보세요." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "FAQ에서 자세한 정보를 확인하세요 »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "현재 사용하는 키" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "주" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "부" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr " 만료된 키를 찾으시나요?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "만료된 패키지 서명 키" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "이 페이지는 패키지 서명에 더 이상 쓰이지 않는 GPG키의 목록을 표시합니다." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "만료, 그리고 사용하지 않는 키" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG 키" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 테스팅" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora 테스트" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 테스팅" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 테스팅" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "종속성" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "패키지 서명 관련 FAQ" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Fedora Project에서는 어떻게 GPG키를 서명에 사용합니까?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "키 가져오기 " - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "다음 명령을 사용하여 수동으로 키를 RPM 데이터베이스로 가져올 수 있습니다: " - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "보다 자세한 내용은 rpm 메뉴얼을 참조하십시오. " - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"시스템에 설치된 키와 목록에 있는 키가 일치하는지를 확인하려면 GnuPG를 사용하여 키 지문이 일치하는지를 확인합니다. 예: " - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora 서버" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "쉬운 관리" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Cockpit의 강력하고 현대적인 인터페이스를 통해 간단히 시스템을 관리하세요. 시스템 성능과 상태를 모니터링하고, 컨테이너 기반 " -"서비스를 관리하실 수 있습니다." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "데이터베이스 서비스" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "Fedora 서버는 PostgreSQL 프로젝트에 의해 엔터프라이즈 규모의 데이터베이스 서버를 제공합니다." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "완전한 엔터프라이즈 도메인 솔루션" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Fedora 서버를 사용해보고 싶으신가요?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Fedora 서버 다운로드" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Fedora %(rel)s 서버 다운로드" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB 설치 이미지" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "Fedora 서버 설치 이미지를 통하여 바로 하드드라이브에 Fedora 서버를 설치하는 라이브 미디어를 만드실 수 있습니다." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "이미지를 사용하시려면, DVD를 만들거나 구울 수 있는 드라이브 또는 이미지 크기보다 큰 용량의 USB가 필요합니다." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit %sMB 이미지" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "다양한 Fedora 찾기" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® 기술" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "어떻게 라이브 이미지를 부팅가능한 미디어로 사용하나요?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"이미지를 다운로드 하신 후, 부팅가능한 미디어를 제작하세요. 빈 DVD에 이미지를 굽거나 , USB드라이브에 이미지를 쓰세요." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "미디어에서 어떻게 부팅하나요?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Fedora %(rel)s %(state)s 서버 다운로드" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit %sGB 설치 이미지" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"이는 시험한 소프트웨어이며 Server Working Group에 의해 지원됩니다." -" 메일링 리스트 또는 freenode 서버의 %(team_irc)s 에서 직접 " -"문의해주세요." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Fedora %s 는 언제 배포되나요?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "기다리던 리눅스 워크스테이션입니다." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora 워크스테이션은 노트북 또는 데스크톱 컴퓨터를 위한 신뢰되는, 사용자 친화적이고 강력한 운영체제입니다. 아마추어와 학생부터 " -"기업환경의 전문가까지, 넓은 범위의 개발자들에게 적합합니다." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "\"페도라에서 제공하는 방대한 양의 도구들이
제 작업을 원활하게 도와줍니다.
안되는게 없습니다.\"" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM 성능 엔지니어" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "세련된 사용자 인터페이스" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"GNOME3 데스크톱 환경에서 코딩에 집중하세요. GNOME은 개발자들의 의견을 반영하여 방해요소를 최소화했기에 중요한 것에 더욱 " -"집중하실 수 있습니다." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "오픈소소 도구 완비" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"필요한 도구들을 찾거나 만드느라 헤메지마세요. Fedora의 완비된 오픈소스 언어, 도구 그리고 유틸리티는 클릭 또는 명령어 한줄로 " -"모든 것을 사용할 수 있게 해줍니다. 게다가 프로젝트 호스팅이나 COPR같은 리포지터리를 포함하고 있어 코드나 빌드를 빠르게 공유하실 " -"수 있습니다." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME 박스 & 다른 virt 관련 도구들" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"GNOME 박스를 사용하여 가상 머신을 만들고 빠르게 코드를 여러 플랫폼 상에서 테스트하세요. 또는 강력한 스크립트 가상 도구들을 통하여" -" 더 자세한 제어를 할 수도 있습니다." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Docker 내장" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "Docker와 같은 최신 기술을 활용하여 나만의 앱들을 컨테이너화 하거나, 외부의 컨테이너화 된 앱들을 사용하세요." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Fedora 워크스테이션을 사용해보고 싶으신가요?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Fedora 워크스테이션 다운로드" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Fedora %(rel)s 워크스테이션 다운로드" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bit %sGB 라이브 이미지" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall 이미지:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit %sMB 이미지" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Fedora 워크스테이션 다운로드: %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Fedora %(rel)s %(state)s 워크스테이션 다운로드" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"이는 시험판 소프트웨어이며 Workstation Working Group에 의해 " -"지원됩니다. 메일링 리스트 또는 freenode 서버의 %(team_irc)s " -"에서 직접 문의해주세요." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "아키텍쳐" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root 저장소" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "지역대를 선택하십시오." - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-비트 (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-비트 (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "실행!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "반출 규정" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "전체 반출 규정 읽기" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "클릭하고 Fedora를 다운로드 함으로 다음 계약과 약관에 동의하는 것으로 간주합니다." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "더 알아보기>" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "자세히" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora에 대하여" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "후원사" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora 매거진" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "법적 고지" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora 워크스테이션" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora 서버" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "지원" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "도움 요청 " - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Fedora 문의" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "잘 알려진 버그" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "설치 가이드" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "가입" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora 가입 " - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora 계정 시스템" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora 커뮤니티" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora는 Red Hat의 후원을 받고 있습니다." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Red Hat과 Fedora의 관계에 대해 더 자세히 알아보기 »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. 외." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "언어 변경" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "확인" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "가볍고, 강력하며, 모든 클라우드 시스템에 적합합니다." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "최신의 기술. 안정한 기반. 모두 어플리케이션과 서비스를 위한 것입니다." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "문서와 다른 자료들" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG 키 정보" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "키 ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "지문" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "여기에서 얻기:" diff --git a/getfedora.org/po/ks.po b/getfedora.org/po/ks.po deleted file mode 100644 index 291f818..0000000 --- a/getfedora.org/po/ks.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \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 1.3\n" -"Language: ks\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ku.po b/getfedora.org/po/ku.po deleted file mode 100644 index c126c82..0000000 --- a/getfedora.org/po/ku.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora-web/language/ku/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: ku\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/kw.po b/getfedora.org/po/kw.po deleted file mode 100644 index 9fbbdad..0000000 --- a/getfedora.org/po/kw.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kw\n" -"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/kw@kkcor.po b/getfedora.org/po/kw@kkcor.po deleted file mode 100644 index cf4e728..0000000 --- a/getfedora.org/po/kw@kkcor.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish (Common Orthography)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kw@kkcor\n" -"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/kw@uccor.po b/getfedora.org/po/kw@uccor.po deleted file mode 100644 index 1320b9c..0000000 --- a/getfedora.org/po/kw@uccor.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish (Unified Orthography)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kw@uccor\n" -"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/kw_GB.po b/getfedora.org/po/kw_GB.po deleted file mode 100644 index 0812a7d..0000000 --- a/getfedora.org/po/kw_GB.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Cornish (United Kingdom)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kw-GB\n" -"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : 3\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ky.po b/getfedora.org/po/ky.po deleted file mode 100644 index 42fb962..0000000 --- a/getfedora.org/po/ky.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Kirghiz\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ky\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/la.po b/getfedora.org/po/la.po deleted file mode 100644 index 40aa922..0000000 --- a/getfedora.org/po/la.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Latin (http://www.transifex.com/projects/p/fedora-web/language/la/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: la\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/lo.po b/getfedora.org/po/lo.po deleted file mode 100644 index 9d8b2e3..0000000 --- a/getfedora.org/po/lo.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Lao (http://www.transifex.com/projects/p/fedora-web/language/lo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: lo\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/lt.po b/getfedora.org/po/lt.po deleted file mode 100644 index ab81eb9..0000000 --- a/getfedora.org/po/lt.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Lithuanian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 or n%100>=20) ? 1 : 2)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/lv.po b/getfedora.org/po/lv.po deleted file mode 100644 index 5be3c48..0000000 --- a/getfedora.org/po/lv.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:27-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Lejupielādēt" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Par" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsori" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Atbalsts" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Saņemt palīdzību" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Pievienoties Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Labi" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/mai.po b/getfedora.org/po/mai.po deleted file mode 100644 index e539166..0000000 --- a/getfedora.org/po/mai.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Maithili\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mai\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/mg.po b/getfedora.org/po/mg.po deleted file mode 100644 index eb35659..0000000 --- a/getfedora.org/po/mg.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora-web/language/mg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: mg\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/mk.po b/getfedora.org/po/mk.po deleted file mode 100644 index c4ff202..0000000 --- a/getfedora.org/po/mk.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Macedonian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ml.po b/getfedora.org/po/ml.po deleted file mode 100644 index 8383f4c..0000000 --- a/getfedora.org/po/ml.po +++ /dev/null @@ -1,2448 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:25-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "അടുത്തതായി, ഫെഡോറയുടെ ജിപിജി കീ ഇംപോര്‍ട്ട് ചെയ്യുക:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "ഇനി, CHECKSUM ഫയല്‍ ശരിയെന്നു് ഉറപ്പിക്കുക:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM ഫയലിനു് താഴെ പറയുന്നവയില്‍ ഏതെങ്കിലും ഒരു കീയില്‍ നിന്നുമുള്ള " -"ശരിയായ ഒപ്പു് ആവശ്യമുണ്ടു്:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "മേഖല" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ഡൗണ്‍ലോഡ്" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"നിങ്ങളാണു് യുആര്‍എല്‍ ടൈപ്പ് ചെയ്തതെങ്കില്‍ ഒന്നുംകൂടി പരിശോധിക്കുക. " -"പകര്‍ത്തുകയാണു് ചെയ്തതെങ്കില്‍ നിങ്ങള്‍ അതു് ശരിയായിട്ടാണോ ചെയ്തതു്?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "കീകള്‍ ഇംപോര്‍ട്ട് ചെയ്യുന്നു" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"ഈ കമാന്‍ഡ് ഉപയോഗിച്ചു് നിങ്ങള്‍ക്കു് ആര്‍പിഎം ഡേറ്റാബെയിസിലേക്കു് ഒരു കീ " -"ഇംപോര്‍ട്ട് ചെയ്യാം:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി rpm മാനുവല്‍ കാണുക." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"ഇവിടെ പറഞ്ഞിരിക്കുന്ന കീകളോടു് നിങ്ങള്‍ ഇന്‍സ്റ്റോള്‍ ചെയ്തിരിക്കുന്ന കീകള്‍" -" പൊരുത്തപ്പെടുന്നു എന്നുറപ്പാക്കുന്നതിനായി, കീയുടെ ഫിംഗര്‍പ്രിന്റ് ‍ " -"പരിശോധിക്കുന്നതിനായി GnuPG ഉപയോഗിക്കാം. ഉദാഹരണത്തിനു്:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "ഫെഡോറ %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "കയറ്റുമതി നിയന്ത്രണങ്ങള്‍" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "സംബന്ധിച്ചു്" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "ഫെഡോറയെപ്പറ്റി" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "പിന്തുണ" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "സഹായം തേടാം" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "ഫെഡോറയോടു ചോദിക്കാം" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "സാധാരണ ബഗുകള്‍" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "ഇന്‍സ്റ്റലേഷന്‍ മാര്‍ഗദര്‍ശി" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "പങ്കു ചേരൂ" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "ഫെഡോറയില്‍ പങ്കു് ചേരാം" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "പ്ലാനറ്റ് ഫെഡോറ" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "ഫെഡോറ SIGകള്‍" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ഫെഡോറ അക്കൗണ്ട് സിസ്റ്റം" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "ഫെഡോറ സമൂഹം" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "ഫെഡോറയെ സ്പോ‌ണ്‍സര്‍ ചെയ്യുന്നത് റെഡ്‌ഹാറ്റാണ്." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/mn.po b/getfedora.org/po/mn.po deleted file mode 100644 index 45bf3ce..0000000 --- a/getfedora.org/po/mn.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Mongolian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/mr.po b/getfedora.org/po/mr.po deleted file mode 100644 index 9dfbf13..0000000 --- a/getfedora.org/po/mr.po +++ /dev/null @@ -1,2445 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:25-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: mr\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "आता डाउनलोड करा" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "नंतर, फेडोरा ची GPG की आयात करा:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "GPG की चे तपशिल आपण येथेपडताळून पाहू शकता" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "आता, CHECKSUM फाईल वैध आहे याची तपासणी करा:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM फाईलकडे खालील की पैकी योग्य स्वाक्षरी असायला हवी:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "डाउनलोड " - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "फेडोरा प्रकल्प - पान सापडले नाही" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"स्वहस्ते प्रविष्ट केले असल्यास URL दोनवेळा तपासा. तुम्ही त्यास योग्यरित्या " -"प्रतिकृत केले?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "फेडोरा 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "फेडोरा 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "फेडोरा 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "फेडोरा प्रकल्प पॅकेजेस स्वाक्षरीसाठी GPG keys चा कसा वापर करते?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "की इम्पोर्ट करत आहे" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"तुम्ही नेहमी RPM माहितीकोष अंतर्गत स्वहस्ते खालिल आदेशचा वापर करून की " -"इम्पोर्ट करू शकता:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "अधिक माहितीकरीता rpm माहितीपुस्तिका." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"तुमच्या प्रणालीवरील प्रतिष्ठापीत की दर्शविल्यानुरूप तपासायचे असल्यास, तुम्ही" -" GnuPG चा वापर की जुळवणी करीता करू शकता. उदाहरणार्थ:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "निर्यात नियमन" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "विषयी" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "फेडोरा विषयी" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "सहाय्य" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "मदत मिळवा" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "सामान्य बग्स" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "प्रतिष्ठापना मार्गदर्शक" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "सहभागी व्हा" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "फेडोराशी जुळवणी करा" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "प्लॅनेट फेडोरा" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "फेडोरा SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "फेडोरा खाते प्रणाली" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "फेडोरा समाज" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "फेडोरा हे रेड हॅट पुरस्कृत आहे" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ठिक आहे" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ms.po b/getfedora.org/po/ms.po deleted file mode 100644 index 6c7a4e8..0000000 --- a/getfedora.org/po/ms.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Malay\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/my.po b/getfedora.org/po/my.po deleted file mode 100644 index 5343fd4..0000000 --- a/getfedora.org/po/my.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Burmese\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: my\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/nb.po b/getfedora.org/po/nb.po deleted file mode 100644 index 427a146..0000000 --- a/getfedora.org/po/nb.po +++ /dev/null @@ -1,2783 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Joakim Forøysund , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-11-22 09:12-0500\n" -"Last-Translator: Joakim Forøysund \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" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora - Regler for god opptreden" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedoras regler for god opptreden" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Opptre som en medlem av fellesskapet, følg reglene for god opptreden." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Regler for god opptreden" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora-fellesskapet består av en blanding av profesjonelle og frivillige fra" -" hele verden som samarbeider om hvert element av distribusjonen, fra koding " -"til markedsføring. Mangfold er en av våre store styrker, men det kan også " -"føre til misforståelser og misnøye. Av den grunn har vi noen grunnregler vi " -"ber folk om å følge når de benytter våre ressurser." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Dette er ikke en uttømmende liste over ting du ikke kan gjøre. Forsøk heller" -" å se helheten den forsøker å skape, og bruk den som en guide for å være " -"fortreffelig mot hverandre." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Vær hensynsfull. Det du skaper vil bli brukt av andre mennesker, og du vil " -"få bruk for det andre har skapt. Ethvert valg du tar påvirker brukere og " -"kolleger, og du bør tenke gjennom konsekvensene av valgene dine." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Vær respektfull. Alle er ikke alltid enig, men uenighet er ingen " -"unnskyldning for dårlig oppførsel og dårlige manerer. Vi kan alle oppleve " -"frustrasjon fra tid til annen, men vi kan ikke tillate at frustrasjonen " -"fører til personangrep. Det er viktig å huske at et fellesskap hvor folk " -"føler ubehag eller opplever å bli truet ikke er et produktivt et. Medlemmer " -"av Fedora-fellesskapet bør være respektfulle i møte med andre bidragsytere, " -"like fullt som med folk utenfra Fedora-fellesskapet og andre brukere av " -"Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Når vi er uenige forsøker vi å finne ut hvorfor. Uenigheter, sosiale som " -"tekniske, skjer av og til, og Fedora er ikke et unntak. Det er viktig at vi " -"løser uenigheter og ulike syn på en konstruktiv måte." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Husk at vi alle er forskjellige. Styrken til Fedora er det varierte " -"fellesskapet - mennesker med ulik bakgrunn. Ulike mennesker har ulikt syn på" -" problemstillinger. Bare fordi vi ikke forstår en annen person sitt syn på " -"saken betyr ikke at de tar feil. Husk at det er menneskelig å gjøre feil, " -"men å fordele skyld hjelper oss ikke noensteds. Tilby heller hjelp til å " -"løse utfordringer og til å lære av feilene." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Skaff deg Fedora: Last ned vårt Linux-baserte operativsystem for utviklere, " -"bruker med flere" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Velg friheten. Velg Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Mindre oppsett, mer utvikling. Velg en variant av Fedora

" -"spesialtilpasset dine behov, og kom i gang med det samme." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s er utgitt! Prøv det selv i " -"Nedlastinger." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s er utgitt! Skaff det nå." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Last ned nå" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation er et blankpolert og lettfattelig operativsystem for " -"bærbare og stasjonære datamaskiner, komplettert med verktøy for utviklere og" -" skapere av alle slag." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Last ned nå" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server er et kraftig og fleksibelt operativsystem som inkluderer de " -"nyeste og beste teknologiene for datasentre. Det gir deg kontroll over all " -"din infrastruktur og dine tjenester." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic tilbyr den beste plattformen for dine Linux-Docker-Kubernetes " -"(LDK)-stacks." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora vil alltid være gratis for alle og enhver både å bruke, endre og " -"distribuere. Det er skapt og brukt av mennesker fra hele kloden som " -"samarbeider i et fellesskap; Fedora Project." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Ønsker du flere Fedora-valg?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora-fellesskapet slipper også ARM-avbildinger, alternative live-alternativer og andre varianter av" -" Fedora, skreddersydd til spesifikke krav. Bla gjennom alle på Fedora Spins-siden eller Fedora Labs-siden." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Hold deg oppdatert." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Ønsker du å bidra? Se hva " -"som skjer i fellesskapet. Les deg " -"opp på siste nytt og annet spennende innhold hos Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Les dokumentasjonen." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Sjekk ut sluttnotatene for detaljert informasjon om den nåværende utgaven. " -"For å lære mer om å bruke Fedora og detaljer som systemkrav, se den offisielle dokumentasjonen." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Få hjelp." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Trenger du hjelp med Fedora? Sjekk ut Spør Fedora hvor du" -" kan lese i arkivet med spørsmål fra andre brukere eller stille dine egne " -"spørsmål." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora-sponsorer" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Fedora Project er stolt av å bli støttet av de følgende organisasjonene:" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Hovedsponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. er Fedora Project sin hovedsponsor. Red Hat" -" bidrar med et bredt utvalg av ressurser, inkludert heltidsansatte som yter " -"støtte, maskinvare til infrastruktur og båndbredde, finansiering av " -"begivenheter og juridisk bistand." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Fedora Project er også takknemlig ovenfor de følgende sponsorene for " -"betydelig støtte:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Interessert i å sponse noe for Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Ta kontakt med admin@fedoraproject.org eller " -"kom innom #fedora-admin på " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifiser din nedlasting" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Instruksjoner for verifisering" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Hvordan verifiserer jeg nedlastingen min?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Når du har lastet ned en avbildning, verifiser den av hensyn til sikkerhet " -"og integritet. For å verifisere nedlastingen starter du med å laste ned den " -"passende sjekksumfilen til samme mappe som avbildningen ble lastet ned til." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "For 64-bits avbildninger" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "For 32-bits avbildninger" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "For Atomic Host-iso" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "For Atomic Host-avbildning" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Neste steg er å importere Fedoras GPG-nøkler:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Du kan verifisere detaljene for GPG-nøklene her." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Verifiser at sjekksumfilen er gyldig:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "Sjekksumfilen bør ha en gyldig signatur fra en av følgende nøkler:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 sekundære arkitekturer (AArch64, PPC64, PPC64le, s390 and s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Til slutt, nå som sjekksumfilen er verifisert, sjekk at avbildningens " -"sjekksum stemmer overens:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Dersom resultatet bekrefter at filen er gyldig, så er den klar til bruk!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Hvordan verifiserer jeg avbildningen min på et annet operativsystem?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Skaff deg Fedora Atomic; den beste plattformen for din containerized " -"applications stack." - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Rull ut og skaler dine containerized applications med uforanderlig " -"infrastruktur." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Last ned eller kjør fra nettskyen" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"\"Vi valgte å bruke Fedora Atomic som basis for vår Navops Launch - " -"Kubernetes cluster provisioning-system fordi kunder allerede bruker og " -"stoler på Red Hat operativsystem. Vi elsker at Fedora Atomic er uforanderlig" -" fordi det er perfekt for containerized miljøer.\"" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Sjefsarkitekt, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host fra Project Atomic er en uforanderlig plattform som krever lite" -" ressurser, spesielt designet for bruk sammen med containerized " -"applikasjoner." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedoras versjon av Atomic Host bruker samme pakkelager som Fedora Server og " -"tilbyr de siste versjonene av Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree-oppdateringer" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Oppdater systemet ditt automatisk til det nyeste fra OStree. Gjør serverne " -"dine identiske slik at du enkelt kan rulle tilbake om du får problemer med " -"oppgraderingen." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic kommandolinje" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Bruk ett praktisk verktøy fra kommandolinjen for å administrere Docker " -"containers, system containers og Atomic Apps for å nevne noen." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimalisert for Kubernetes og OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Bygger du et Kubernetes eller Origin cluster for å kjøre dine containerized " -"applications? Kjør dem med Fedora Atomic fordi det tilbyr den plattformen du" -" trenger, med et mindre og slankere operativsystem." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Er du klar til å prøve Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Takk for at du laster ned Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Nedlastingen starter i løpet av noen få sekunder. Hvis ikke kan du trykke på" -" lenken under:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifiser nedlastingen!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Når du har lastet ned en avbildning, verifiser den av hensyn til sikkerhet " -"og integritet. For å verifisere nedlastingen starter du med å laste ned den " -"passende sjekksumfilen til samme mappe som avbildningen ble lastet ned til, " -"og følg disse instruksjonene." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Last ned Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Last ned Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host bygges omtrent annen hver uke." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Versjonen for de siste to ukene passer ikke med dine testkriterier. " -"Avbildningene som er tilgjengelige er %(atomic_age)s dager gamle. Les om " -"oppdateringer og feil på Project Atomic-bloggen." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Dette er de siste Fedora Atomic Host-avbildningene, produsert for " -"%(atomic_age)s dager siden." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host-avbildninger" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host er et ledende operativsystem bygget etter Project Atomic-" -"modellen. Det er designet rundt Kubernetes og containere, som gjenspeiles i " -"disse avbildningene. Merk at avbildningene har bestått flere omganger med " -"automatisk testing." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Test nye versjoner før de settes i produksjon. Dersom du " -"oppdager problemer gjør Atomic Host-verktøyene det enkelt å rulle tilbake " -"til en tidligere utgivelse - og dersom det skjer, vær så snill hjelp oss ved" -" å levere feilmelding eller feilrettinger." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Fedora Atomic Host-avbildningene oppdateres omtrent annenhver " -"uke, i stedet for seks måneder som er alminnelig for Fedora. Fordi " -"utviklingen går så raskt er bare den siste hovedutgivelsen støttet." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Merk at de forskjellige Fedora Atomic Host-mediene er testet i ulik " -"grad. Du kan finne ut mer om Atomic Project på projectatomic.io. Klikk her for å se " -"gjeldende teststatus." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host-avbildninger for Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Linkene under leder til lister over tilgjengelige Atomic Host Hardware " -"Machine (HVM) AMI'er ut fra region, med knapper for å kjøre dem i gang i " -"Amazon Web Services-kontoen din. AMI ID'er for bruk med AWS-konsollen eller " -"kommandolinje finnes også." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2-format" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"GP2-formaterte AMI'er bruker raskere SSD-lagring. Bruk disse AMI'ene for " -"hastighet, men merk at lagringskostnadene blir høyere enn standard." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI'er" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Lukk" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI'er" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Kjør" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standard Format)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"AMI'er med standardformat er best egnet dersom du trenger sporadisk tilgang " -"til data og trenger å holde kostnadene nede." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMI'er" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s Standard Atomic Host HVM AMI'er" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standardformat" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host-avbildninger for Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Vis Vagrant-nedlastinger" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Nedlasting av Vagrant-avbildninger" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Disse avbildningene er beregnet for Vagrant boxes og rulles ut med Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox-avbildning" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Dersom du bruker Vagrant på Mac OS X eller Windows, er det sannsynligvis " -"denne avbildningen du trenger." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Last ned" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bit %sMB Grunnleggende Vagrant-avbildning for VirtualBox" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM-avbildning" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Dersom du bruker Vagrant på Fedora er det denne avbildningen du trenger." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bit %sMB Grunnleggende Vagrant-avbildning for libvirt/KVM" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Vis nedlastinger med Vagrant-verktøy" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Vagrant-nedlastinger med Vagrant-verktøy" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Du kan bruke den følgende kommandoen for å hente Vagrant Box-avbildninger " -"fra HashiCorps Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Dersom du tidligere har brukt Fedora %(rel)s Atomic Host i Vagrant på " -"maskinen din kan du hente den siste versjonen ved å kjøre:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Ønsker du mer informasjon om å kjøre Vagrant på Fedora Workstation kan du se" -" på wiki-siden vår." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host-avbildninger for nettskymiljøer" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2-avbildning" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Dette er Fedora %(rel)s Cloud Atomic Host i en Qcow2-formattert avbildning " -"beregnet for bruk med OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Qcow2-avbildning" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Rå-avbildning" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Dette er Fedora %(rel)s Cloud Atomic Host som komprimert rå-avbildning. " -"Dersom du er usikker på hva du skal bruke så prøver du denne." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB xz-komprimert rå-avbildning" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Andre nedlastinger" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO-avbildning (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Prøv en versjon som ikke er ferdig utprøvd" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Vi arbeider med neste versjon." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Hjelp oss med å ferdigstille F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Last ned F%(rel)s %(state)s-avbildninger" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Slik tester du versjoner som ikke er ferdig utprøvd" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ressurser" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Kom i gang" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Veiledning for å komme i gang med Project Atomic og Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: E-post-liste" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "Meld deg på e-post-listen hos atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC-chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Bli med i Project Atomic-kanalen #atomic på " -"irc.freenode.org på IRC." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifiser" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifiser avbildningen din" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Last ned Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Dette er de nyeste Fedora Atomic Host-avbildningene, produsert " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dette er programvare som ikke er ferdig utprøvd og støttes av Atomic Working Group. Spørsmål rettes til deres " -"e-post-liste eller %(team_irc)s på freenode på" -" IRC." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Alle feil bør rapporteres via Red Hat Bugzilla. The " -"Fedora Project gir ingen garantier for velegnethet eller anvendbarhet." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMI'er" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMI'er" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxes for Fedora Atomic Host er tilgjengelig for VirtualBox og " -"Libvirt. Du kan legge Fedora Atomic Host i en Vagrant Box ved å laste ned " -"avbildninger fra Fedora eller ved å bruke Vagrant-verktøy til å hente dem " -"fra HashiCorp's Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Dette er Fedora %(rel)s %(state)s Cloud Atomic Host i en Qcow2-formatert " -"avbildning for bruk med OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Dette er Fedora %(rel)s %(state)s Cloud Atomic Host i en komprimert " -"råavbildning. Dersom du er usikker på hva du skal bruke kan du prøve denne." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Siden ble ikke funnet" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Siden ble ikke funnet" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Vi beklager, men filen eller siden du ba om ble ikke funnet." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Hjelp til feilsøking" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Dobbelsjekk URL-en hvis du skrev den manuelt. Kopierte du det riktig?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Ødelagt lenke? Kontakt webansvarlig og forklar hvilken " -"lenke som fikk deg hit." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Siden eller filen kan ha blitt flyttet. Sjekk hovedsiden eller gjør et søk i vår wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Pakkesigneringsnøkler" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Denne siden lister opp GPG-nøkler som benyttes for pakkesignering i Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Lær hvordan Fedora beskytter deg." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "Fedora benytter GPG pakkesignering for å sikre pakkens integritet." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Les Ofte stilte spørsmål for å lære mer" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Brukte nøkler" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primær" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekundær" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Ser du etter avlegse nøkler?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Avlegse signeringsnøkler" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Denne siden lister opp GPG-nøkler som ikke lenger benyttes til " -"pakkesignering i Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Avlegse og ubrukte nøkler" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG-nøkkel" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Pakker på installasjonsmedier signeres med denne nøkkelen. De relevante dnf-" -"lagrene er fedora, fedora-updates for " -"Fedora 7-9, og core og core-updates for " -"Fedora Core (Versjon 6 og eldre). Se http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for informasjon om hvorfor denne" -" nøkkelen er avlegs." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Om du deltar i pakketesting er det denne nøkkelen du bruker til å verifisere" -" testpakkene. Nøkkelen signerer pakkene som er i fedora-" -"testing-lageret. Se http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for informasjon om hvorfor denne" -" nøkkelen er avlegs." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Dersom du benytter Fedora Extras med Fedora Core 6, bruk denne pakken fra " -"extras-pakkelageret. Denne nøkkelen vil ikke bli brukt " -"etter at Fedora Core 6 og Extras når EOL (7. desember 2007). Denne nøkkelen " -"er ikke inkludert i fedora-release-pakken i Fedora 7 og " -"nyere." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Eldre systemer" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Denne nøkkelen ble sluppet av Fedora Legacy Project for å oppdatere " -"utgivelser som rakk fram til deres offisielle EOL. Fedora Legacy Project " -"eksisterer ikke lenger, og derfor vil heller ikke denne nøkkelen lenger bli " -"brukt til å signere pakker. Denne nøkkelen er ikke inkludert i fedora-release-pakken i Fedora 7 og nyere utgaver." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Ofte stilte spørsmål om pakkesignering" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Lær hvordan Fedora benytter GPG til å signere pakker for å ivareta " -"sikkerheten din." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Hvordan bruker Fedora Project GPG-nøkler for å signere pakker?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Hver stabile RPM-pakke som slippes av Fedora Project er signert med en GPG-" -"signatur. Som standard kontrollerer dnf og grafiske oppdateringsverktøy " -"disse signaturene og nekter å installere pakker som er usignerte eller har " -"feilaktige signaturer. Du bør alltid kontrollere signaturen til en pakke før" -" du installerer den. Signaturene forsikrer deg om at pakker du installerer " -"er nøyaktig dem som Fedora Project produserte, og ikke har blitt endret i " -"ettertid (med et uhell eller tilsiktet) av noen andre." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Pakker som lastes ned fra Koji build system inneholder ikke signaturer, så " -"du må bruke dem med varsomhet. På samme måte er blodferske pakker i Rawhide " -"ikke nødvendigvis signerte." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importering av nøkler" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Nøklene er inkludert i fedora-release-pakken, og du kan se " -"dem i /etc/pki/rpm-gpg-mappen. Merk at ikke alle nøklene i " -"denne mappen brukes av Fedora Project - noen benyttes for signering av Red " -"Hat Enterprise Linux-pakker eller brukes ikke lenger i det hele tatt. Dersom" -" du bruker Red Hat Enterprise Linux-pakker, se https://www.redhat.com/security/team/key. Nøklene som brukes" -" av Fedora er aktiverte i dnf-pakkelager-konfigurasjonen, så du trenger " -"normalt ikke å importere dem selv." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"I tillegg til fedora-release-pakken og denne siden kan du laste ned " -"Fedoranøkler fra en nøkkelserver, som for eksempel keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Dnf kan selv finne passende nøkler for pakker i enkelte " -"pakkelagre, og spør brukeren om bekreftelse før nøklene importeres dersom de" -" ikke allerede eksisterer i rpm-databasen." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Du kan alltids importere en nøkkel til RPM-databasen selv ved å bruke denne " -"kommandoen:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Referer til rpm-manualen for mer informasjon." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Om du ønsker å verifisere at nøklene du har installert på maskinen din " -"stemmer med nøklene som er listet her, kan du bruke GnuPG for å sjekke at " -"fingeravtrykket til nøklene passer. For eksempel:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Skaff Fedora Server; den nyeste teknologien for dine applikasjoner og " -"tjenester" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Enkel administrasjon" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Enkel administrering med Cockpits kapable og moderne grensesnitt. Overvåk " -"systemytelse og status, og rull ut og administrer container-baserte " -"tjenester." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Databasetjenester" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server inkluderer en profesjonell, skalerbar databaseserver som " -"drives av PostgreSQL-prosjektet." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Profesjonell og komplett domeneløsning" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Er du klar til å prøve Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Last ned Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Last ned Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB installasjonsavbildning" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Fedora Server-avbildningen lar deg lage media som du kan bruke til å " -"installere Fedora Server direkte til disken." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"For å bruke denne avbildningen trenger du en enhet som kan lage eller " -"\"brenne\" DVD'er eller en minnepenn med en kapasitet som er minst like stor" -" som avbildningen." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall-avbildning" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bits %sMB avbildning" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Download F%(rel)s Alpha-avbildninger" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Last ned F%(rel)s Beta-avbildninger" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Vil du ha mer Fedora?" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM®-teknologi" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Hvordan gjør jeg en Live-avbildning kjørbar?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Etter at du har lastet ned avbildningen må du lage et oppstartsbart medium " -"fra den. Du kan entenbrenne avbildningen til en tom DVD, " -"eller skrive avbildningen til en minnepenn." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Hvordan starter jeg maskinen fra mediet?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Slå opp i dokumentasjonen til datamaskinen din for å finne fremgangsmåten " -"for å starte fra andre medier enn den innebygde disken. Fremgangsmåten kan " -"variere mellom produsenter og modeller. Disse alminnelige " -"tipsene kan være nyttige." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bits %sGB Installasjonsavbildning" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dette er programvare som ikke er ferdig utprøvd, og støttes av Server Working Group. Spørsmål rettes til deres e-post-liste eller %(team_irc)s på freenode på " -"IRC." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Les utgivelsesnotatene for mer informasjon " -"om endringer og nye funksjoner, og siden med vanlige feil for informasjon om vanlige feil" -" som kan oppstå og hvordan du unngår dem." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Når slippes Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Se alle milepælene for utgivelsen..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Når du har lastet ned en avbildning bør du verifisere den av hensyn til " -"sikkerhet og integritet. For å verifisere avbildningen starter du med å " -"laste ned sjekksum-filen under til samme mappe som du lastet ned " -"avbildningen til, og følger deretter disse " -"instruksjonene." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Skaff Fedora Workstation; det beste operativsystemet for " -"programvareutviklere" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Dette er den arbeidsstasjonen med Linux du har ventet på." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation er et pålitelig, brukervennlig og kraftig operativsystem " -"for datamaskinen din. Det blir brukt av et bredt utvalg utviklere, fra dem " -"som gjør det som hobby og studenter til profesjonelle aktører." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"\"Overfloden av verktøy levert av
Fedora gjør at jeg får jobben " -"gjort.
Det bare virker.\"" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM performance-ingeniør" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Lekkert brukergrensesnitt" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Konsentrer deg om programmeringen i GNOME 3-miljøet. GNOME er bygget etter " -"tilbakemeldinger fra utviklere, og begrenser forstyrrende elementer til et " -"minimum sik at du kan konsentrere deg om det som er viktig." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Fullstendig verktøykasse med åpen kildekode" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Dropp jaget etter de verktøyene du trenger. Med Fedoras fyldige tilgang til " -"ulike språk, verktøy og tilbehør er alt et klikk eller en kommando unna. Du " -"kan til og med benytte pakkelagre som COPR til å gjøre arbeidene dine " -"tilgjengelig for fellesskapet." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes og andre virtualiseringsverktøy" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Kjør i gang virtuelle maskiner for å teste koden din på ulike plattformer " -"med GNOME Boxes. Eller fordyp deg i kraftige virtualiseringsverktøy for " -"enda bedre kontroll." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Innebygd støtte for Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Kjør dine egne apper i containere, eller rull ut container-apper rett fra " -"Fedora mens du bruker den nyeste teknologien, som Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Er du klar til å prøve Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Last ned Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Last ned Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer for Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO for Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer for Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Last ned Fedora Media Writer for akkurat ditt operativsystem." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Trenger du veiledning? Eller en annen versjon?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Kjører Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "For å kjøre Fedora Workstation trenger du:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (last ned over)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "En minnepenn med minst %s GB tilgjengelig lagringsplass" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Alternativt kan du installere Fedora Workstation på en datamaskin som har " -"minst 1 GHz prosessor, 1 GB RAM og 10 GB ledig lagringsplass. For å " -"installere starter du live-versjonen av Fedora Workstation fra minnepennen, " -"kjører Fedora Media Writer derfra og følger anvisningene på skjermen." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Støttede plattformer" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer støtter følgende plattformer:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vi har oppdaget at du bruker Mac OS X og har forvalgt denne" -" versjonen for deg. Dersom dette er feil eller du vil laste ned en annen " -"versjon, klikker du på \"Vis nedlastinger for alle plattformer\" under." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Vi har oppdaget at du bruker Linux og har forvalgt denne " -"versjonen for deg. Dersom dette er feil eller du vil laste ned en annen " -"versjon, klikker du på \"Vis nedlastinger for alle plattformer\" under." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vi har oppdaget at du bruker Windows og har forvalgt denne " -"versjonen for deg. Dersom dette er feil eller du vil laste ned en annen " -"versjon, klikker du på \"Vis nedlastinger for alle plattformer\" under." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Vis nedlastinger for alle plattformer" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Tilgjengelig via DNF for Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Flere detaljer" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Hvordan bruker jeg denne ISO-avbildningen?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifiser denne avbildningen" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bits %sGB Live-avbildning" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall-avbildninger" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bits %sMB avbildning" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Utgivelseskunngjøring" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Les hele utgivelseskunngjøringen hos Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Utgivelsesnotater" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Finn ut hva som er endret fra forrige utgave av Fedora, i tillegg til " -"minimumskrav og anbefalinger for å kjøre Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" -"Installasjonsveiledning" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Vi anbefaler at du leser gjennom dette før du installerer, siden det " -"besvarer mange vanlige spørsmål." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Vanlige feil" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"En utmerket kilde å lete etter løsninger dersom du opplever problemer mens " -"du installerer eller bruker Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Hva betyr \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer lager en fullstendig, kjørbar Fedora Workstation som du " -"kan starte direkte fra en minnepenn. Du kan bruke Live-avbildningen til å " -"teste og leke deg med Fedora uten å gjøre endringer på datamaskinen din." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Når du er klar for det kan du installere Fedora på maskinen din fra denne " -"live-versjonen av Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Last ned Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Last ned Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dette er programvare som ikke er ferdig utprøvd, støttet av Workstation-arbeidsgruppen. Spørsmål rettes til e-post-listen deres eller %(team_irc)s på " -"freenode på IRC." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Kjøre forhåndsversjoner av Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "For å kjøre en forhåndsversjon av Fedora Workstation trenger du:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Nedlasting tilgjengelig under)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"En live-avbildning av den forhåndsversjonen av Fedora du " -"ønsker å kjøre" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ADVARSEL: Dette sletter alle data på USB-mediet. Forsikre deg om at du har " -"sikkerhetskopiert filene dine før du fortsetter." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Last ned Fedora Media Writer-appen under." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Last ned ISO-avbildningen du ønsker." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Åpne Fedora Media Writer. Det kan hende du må oppgi passordet ditt for å gi " -"appen tillatelsene den trenger." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Velg \"Custom OS...\" fra listen." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "På Custom OS-siden velger du \"Select Live ISO\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "I filvalgsvinduet finner du og velger ISO-avbildningen du lastet ned." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Sett inn minnepennen. Om du har brukt minnepennen til live-media tidligere " -"kan det hende du må gjenopprette til fabrikkinnstillinger (restore to " -"factory settings). Appen spør i så fall om du ønsker å gjøre dette." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Velg \"Create Live USB\" for å skrive avbildningen til minnepennen. Vent til" -" prosessen er ferdig før du tar ut minnepennen og lukker appen." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Slik tester du forhåndsutgivelser" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "Fedora wiki-guide om hvordan du tester forhåndsutgivelser av Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arkitektur" - -#: data/templates/cloud-tab.html:15 -#, fuzzy -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Kjør AMI-forekomst" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Velg nærmeste region" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Kjør den!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Eksportreglement" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Les fullstendig eksportreglement" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Ved å klikke og laste ned Fedora, godkjenner du å følge de følgende vilkår " -"og betingelser" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Les mer >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Om" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Om Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorer" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Juridisk" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Skaff Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Skaff Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Skaff Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternative nedlastinger" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Støtte" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Få hjelp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Spør Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Vanlige feil" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora utvikler-portal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installasjonshåndbok" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Bli med" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Bli med i Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGer" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora kontosystem" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora nettsamfunn" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora er sponset av Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Lær mer om forholdet mellom Red Hat og Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. og andre." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Kommentarer og korrigeringer sendes til webside-teamet." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Endre språk" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Det ligger mer i \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Slank. Kraftig. Klar for nettskyen." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Den nyeste teknologien. En stabil stiftelse. Sammen for dine applikasjoner " -"og tjenester." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentasjon og andre ressurser" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Andre måter å skaffe installasjonsmedia" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Du kan kjøpe installasjonsmedia fra Fedora hos nettbutikker eller hos en lokal " -"forhandler i ditt område." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Har du ikke råd til installasjonsmedia? Du kan be om gratis " -"installasjonsmedia fra Fedora Free Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informasjon om GPG-nøkkel" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Nøkkel-ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingeravtrykk" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Get it from:" diff --git a/getfedora.org/po/nds.po b/getfedora.org/po/nds.po deleted file mode 100644 index af68ac9..0000000 --- a/getfedora.org/po/nds.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Low German\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nds\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ne.po b/getfedora.org/po/ne.po deleted file mode 100644 index 2e11beb..0000000 --- a/getfedora.org/po/ne.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Nepali\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ne\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/nl.po b/getfedora.org/po/nl.po deleted file mode 100644 index 31bb872..0000000 --- a/getfedora.org/po/nl.po +++ /dev/null @@ -1,2876 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Geert Warrink , 2014 -# Geert Warrink , 2015. #zanata -# Geert Warrink , 2016. #zanata -# Jasper Backer , 2016. #zanata -# Lode Claassen , 2016. #zanata -# Geert Warrink , 2017. #zanata -# Renate Oude Nijeweme , 2017. #zanata -# Geert Warrink , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-08 08:00-0400\n" -"Last-Translator: Geert Warrink \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" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora gedragscode" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora's gedragscode" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Gedraag je als een lid van de gemeenschap en volg de gedragscode." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Gedragscode" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"De Fedora gemeenschap is opgebouwd uit een wereldwijde mix van professionals" -" en vrijwilligers, die samenwerken aan elk aspect van de distributie van " -"codering tot aan marketing. Diversiteit is een van onze grote troeven, maar " -"het kan ook leiden tot communicatie problemen en onvrede. Daarom hebben we " -"een paar basisregels opgesteld als leidraad voor mensen die projectmiddelen " -"gebruiken." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Dit is geen uitputtende lijst van dingen die je niet mag doen. Gebruik het " -"echter de geest waarin het bedoeld is - een gids om gemakkelijker excellent " -"voor elkaar te zijn." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Wees attent. Je werk zal door andere mensen gebruikt worden, en jij bent op " -"jouw beurt afhankelijk van het werk van anderen. Elke beslissing die je " -"neemt zal invloed hebben op gebruikers en collega's, en je moet met deze " -"gevolgen rekening te houden bij het nemen van beslissingen." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Toon respect. We zullen het niet altijd met elkaar eens zijn, maar " -"onenigheid is geen excuus voor slecht gedrag en slechte manieren. We zullen " -"allemaal zo nu en dan wat frustratie ervaren, maar we kunnen niet toestaan " -"dat die frustratie omgezet wordt in een persoonlijke aanval. Het is " -"belangrijk te onthouden dat een gemeenschap waarin mensen zich ongemakkelijk" -" of bedreigd voelen niet productief is. Leden van de Fedora gemeenschap moet" -" respectvol zijn bij de behandeling van andere medewerkers, alsmede met " -"mensen buiten de Fedora gemeenschap en met de gebruikers van Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Als we het niet eens zijn, proberen we te begrijpen waarom. Onenigheid, " -"zowel sociaal als technisch, gebeurt altijd en Fedora is geen uitzondering. " -"Het is belangrijk dat we meningsverschillen en verschillende opvattingen " -"constructief oplossen." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Vergeet niet dat we anders zijn. De kracht van Fedora is afkomstig van haar " -"gevarieerde gemeenschap, mensen uit een breed scala aan achtergronden. " -"Verschillende mensen hebben verschillende standpunten over vraagstukken. Als" -" je niet begrijpt waarom iemand bepaald gezichtspunt heeft, hoeft dat niet " -"te betekenen dat dit verkeerd is. Denk eraan dat het menselijk is om je te " -"vergissen en elkaar de schuld geven brengt ons niet verder, in plaats " -"daarvan kun je beter aanbieden om problemen mee op te lossen en te helpen " -"met het leren van fouten." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Haal Fedora binnen: download ons op Linux gebaseerd OS voor " -"ontwikkelaarsbureaubladen, het draaien van containers, en nog veel meer" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Kies voor vrijheid. Kies Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Minder instellingen, meer innovatie. Kies een een Fedora smaak die

gestroomlijnd is voor jouw behoefte, en ga er meteen mee aan de slag." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s is vrijgegeven! Test het in de " -"Download sectie." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s is vrijgegeven! Haal het nu op." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Werkstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Nu downloaden" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation is een gepolijst, gemakkelijk te gebruiken " -"besturingssysteem voor laptop en desktop computers, met een complete set " -"gereedschappen voor ontwikkelaars en allerlei soorten makers." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Nu downloaden" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server is een krachtig, flexibel besturingssysteem dat de beste en " -"nieuwste datacenter technologieën bevat. Het geeft jou de controle over al " -"je infrastructuur en services. " - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic biedt het beste platform voor je Linux-Docker-Kubernetes (LDK)" -" toepassingsstack." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora is altijd gratis en vrij te gebruiken, aan te passen en te " -"distribueren. Het wordt wereldwijd ontwikkeld door een grote gemeenschap " -"van mensen onder de naam 'The Fedora Project'." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Wil je meer Fedora opties?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"De Fedora-gemeenschap publiceert ook ARM-images , alternatieve Live Spins en andere variaties van Fedora " -"toegespitst op specifiek gebruik. Bekijk ze op de Fedora Spins of Fedora Labs website." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Sluit je aan en blijf op de hoogte." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Wil je betrokken zijn met " -"Fedora? Wil je ontdekken wat er in de gemmeenschap gebeurd? " -"Lees het laatste nieuws en de leuke dingen in Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Lees de documentatie." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Bekijk de uitgave-informatie voor gedetaileerde informatie over de huidige " -"uitgave. Om meer te weten te komen over het gebruik van Fedora en details " -"zoals systeemvereisten, bekijk je de officiële " -"documentatie." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Krijg hulp." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Heb je wat hulp nodig met Fedora? Bekijk Vraag Fedora, " -"waar je archieven en vragen van andere gebruikers kunt lezen, of stel je " -"eigen vraag." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora sponsors" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Het Fedora Project is trots om de volgende organisaties als sponsors te " -"hebben ..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Hoofdsponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. is de hoofdsponsor voor het Fedora Project." -" Red Hat biedt het Fedora project een brede variëteit aan middelen, " -"waaronder fulltime medewerker ondersteuning, hardware-infrastructuur en " -"bandbreedte, financiering van bijeenkomsten en juridisch advies." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Het Fedora Project is ook dankbaar voor de volgende sponsors voor het " -"verstrekken van aanzienlijke steun:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Heb je interesse om iets voor Fedora te sponsoren?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Neem contact op met admin@fedoraproject.org of " -"kom langs in #fedora-admin op " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifieer je gedownloade image" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM en verificatie instructies" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Hoe verifieer ik mijn image?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Zodra je een image gedownload hebt, verifieer je het voor beveiliging en " -"integriteit. Om je image te verifiëren, begin je met het downloaden van het " -"juiste CHECKSUM bestand in dezelfde map als waarin je de image gedownloaded " -"hebt:" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Voor 64-bit images" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Voor 32-bit images" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Voor Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Voor Atomic Host Iso" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Voor Atomic Host images" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Voor Container" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Vervolgens importeer je Fedora's GPG-sleutel(s):" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Je kunt de details van de GPG-sleutel(s) hier " -"verifiëren." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Verifieer vervolgens of het CHECKSUM-bestand geldig is:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Het CHECKSUM-bestand zou een goede handtekening moeten hebben van één van de" -" volgende sleutels:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 secondaire architecturen (AArch64, PPC64, PPC64le, s390 en s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Nu het CHECKSUM bestand geverifieerd is, controleer je tenslotte of de " -"checksum van de image overeenkomt:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Als de output aangeeft dat het bestand geldig is, dan is het nu klaar voor " -"gebruik!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Hoe verifieer ik mijn gedownloade images op een ander besturingssysteem?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Lees deze instructies om je image te verifiëren." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Haal Fedora Atomic binnen: het beste platform voor je toepassingsstack in " -"containers" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Implementeer en schaal je container toepassingen met een onveranderlijke " -"infrastructuur." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Download oF lanceer in Public Cloud" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“We kozen ervoor om Fedora Atomic te gebruiken als de basis voor onze Navops" -" Launch — Kubernetes cluster oplossing omdat onze klanten Red Hat " -"besturingssystemen al draaien en vertrouwen. We houden van het " -"onveranderlijke aspect van Fedora Atomic welke perfect geschikt is voor " -"containeromgevingen.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Chief Architect, Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host van Project Atomic is een lichtgewicht, onveranderlijk platform," -" specifiek ontworpen voor het draaien van containers toepassingen." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedora's versie van Atomic Host gebruikt dezelfde pakketrepositories als " -"Fedora Server, en biedt de nieuwste versies van de Atomic aan." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree updates" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Update je systeem met de nieuwste OStree. Maak je servers identiek, en draai" -" het gemakkelijk terug als er een upgrade probleem is." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Beheer Docker containers, systeem containers, Atomic Apps, en nog meer met " -"gebruik van een gemakkelijk commandoregelgereedschap." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Geoptimaliseerd voor Kubernetes en OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Wil je een Kubernetes of Origin cluster bouwen om je container toepassingen " -"te draaien? Draai het op Fedora Atomic, welke je het platform biedt op een " -"kleiner en slanker besturingssysteem." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Ben je er klaar voor om Fedora Atomic uit te proberen?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Download Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Bedankt voor het downloaden van Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Je download moet over enkele secondes beginnen. Als dit niet het geval is, " -"klik je op de link hieronder:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifieer je Download!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Zodra je een image gedownload hebt, verifieer je het voor beveiliging en " -"integriteit. Om je image te verifiëren, begin je met het downloaden van het " -"juiste CHECKSUM bestand in dezelfde map als waarin je de image gedownload " -"hebt en je volgt deze instructie op." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Verifieer!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Download Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Download Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host wordt ongeveer om de twee weken gebouwd." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"De laatste twee wekelijkse uitgave voldoet niet aan onze testcriteria. De " -"beschikbare images zijn van meer dan %(atomic_age)s dagen geleden. Check de " -"Project Atomic blog voor updates en informatie over Atomic blokkeerbugs." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Dit zijn de laatste officiële Fedora Atomic Host images, %(atomic_age)s " -"dagen geleden gemaakt." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host images" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host is een toonaangevend basis besturingssysteem die het Project Atomic model volgt. Het is ontworpen voor Kubernetes en\n" -"containers. De hier getoonde images laten deze inspanning zien. Merk op dat de images verschillende niveaus geautomatiseerd testen gepasserd hebben." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Test nieuwe versies voordat je ze in productie neemt. Als " -"je een probleem ontdekt, maken de Atomic Host gereedschappen het gemakkelijk" -" om terug te gaan naar een eerdere uitgave — en als dat gebeurt kun je ons " -"helpen door het indienen van bugs of opsturen van reparaties." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Fedora Atomic Host images worden ongeveer elke twee weken " -"vernieuwd, in plaats van het zes maandelijks ritme van de hoofd " -"Fedora vrijgave. Omdat de ontwikkeling sneller verloopt, wordt alleen de " -"laatste hoofd Fedora vrijgave ondersteund." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Merk op dat verschillende Fedora Atomic Host media onderworpen zijn " -"aan verschillende niveaus van automatisch testen. Je kunt meer te " -"weten komen over het Atomic project op projectatomic.io. " -"Klik hier om de huidige teststatus te bekijken." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host Images voor Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"De links hieronder bieden je een overzicht van beschikbare Atomic Host " -"Hardware Virtuele Machine (HVM) AMI's volgens regio met knoppen om ze te " -"lanceren in je Amazon Web Services account. AMI ID's voor gebruik met de AWS" -" Console of commandoregelgereedschappen worden ook aangeboden." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 formaat" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"GP2 formaat AMIs gebruiken snellere SSD opslag; gebruik deze AMI's voor " -"snelheid, merk echter opdat je opslagkosten hoger dan standaard zullen zijn." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI's" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Sluiten" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI's" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Regio" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Starten" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standaard formaat" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Standaard formaat AMI's zijn geschikter als je data hebt die slechts zelden " -"geraadpleegd wordt en je de opslagkosten laag wilt houden." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standaard HVM AMI's" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s Standard Atomic Host HVM AMI's" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standaard formaat" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host images voor Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Vagrant Boxes voor Fedora Atomic Host zijn beschikbaar voor de VirtualBox en Libvirt aanbieders. Je kunt Fedora Atomic Host aanmaken in een vagrant box door het downloaden van de images van Fedora of met het gebruik van de vagrant gereedschappen om de images van HashiCorp's Vagrant Cloud\n" -"te halen." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Bekijk Vagrant downloads" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant Image downloads" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Deze images zijn Vagrant Boxes images voor het inzetten met gebruik van Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox Image" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Als je Vagrant gebruikt op Mac OS X of Windows, is dit waarschijnlijk de " -"image die je wilt gebruiken." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Download" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bit %sMB VirtualBox Base Vagrant image" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM Image" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Als je Vagrant op Fedora gebruikt, is dit de image die je zult willen " -"gebruiken." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bit %sMB libvirt/KVM Base Vagrant image" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Bekijk downloads met gebruik van Vagrant gereedschappen" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Vagrant downloads met gebruik van Vagrant gereedschappen" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Je kunt het volgende commando gebruiken voor het pakken van de Vagrant Box " -"images van HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Als je vroeger Fedora %(rel)s Atomic Host in Vagrant op je machine hebt " -"gedraaid dan kun je de nieuwste versie krijgen met het uitvoeren van:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Voor meer informatie over het draaien van Vagrant op Fedora Workstation, " -"refereer je naar onze wiki pagina." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host images voor Cloud Environments" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 image" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Dit is Fedora %(rel)s Cloud Atomic Host in een Qcow2-geformatteerde image " -"voor gebruik met OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Qcow2 image" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw image" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Dit is Fedora %(rel)s Cloud Atomic Host in een gecomprimeerd raw image " -"formaat. Als je niet zeker bent wat je moet gebruiken, probeer dan deze." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB xz-Compressed Raw image" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Andere downloads" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO image (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Container image (%sMB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Probeer een proefversie" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "We zijn bezig met onze volgende uitgave." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Help ons om F%(rel)s klaar te maken!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Download F%(rel)s %(state)s images" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Hoe kun je proefversies testen" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Hulpbronnen" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Getting Started" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" -"Documentatie over het starten met het gebruik van Project Atomic / Atomic " -"Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Mailing List" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Sluit je aan bij de upstream maillijst op atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC Chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Sluit je aan bij het Project Atomic kanaal #atomic op " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifiëren" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifieer je image" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Download Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Dit zijn de nieuwste Fedora Atomic Host images, gemaakt op " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dit is pre-release software en wordt ondersteund door de Atomic Working Group. Stel vragen hierover op hun " -"maillijst of %(team_irc)s op freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Alle problemen of bugs moeten gerapporteerd worden via de Red" -" Hat Bugzilla. Het Fedora Project geeft geen garanties voor geschiktheid" -" of bruikbaarheid." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMI's" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMI's" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxes voor Fedora Atomic Host zijn beschikbaar voor de VirtualBox en" -" Libvirt aanbieders. Je kunt Fedora Atomic Host aanmaken in een vagrant box " -"door het downloaden van de images van Fedora of met het gebruik van de " -"vagrant gereedschappen om de images van HashiCorp's Atlas" -" te halen." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Dit is Fedora %(rel)s %(state)s Cloud Atomic host in een Qcow2-geformatteerd" -" image voor gebruik met OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Dit is Fedora %(rel)s %(state)s Cloud Atomic Host in een gecomprimeerd raw " -"image formaat. Als je niet zeker weet wat je moet gebruiken, probeer dan " -"deze." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Pagina Niet Gevonden" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Page Not Found" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Wij verontschuldigen ons, maar de pagina die je aanvroeg kon niet gevonden " -"worden." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Probleemoplossing tips" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Controleer de URL opnieuw, zeker als je deze handmatig ingevoerd hebt. Heb " -"je het correct gekopieerd? " - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Slechte link? Neen contact op met de webmaster en vertel " -"hem welke link je hier bracht." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"De pagina of het bestand kan verplaatst zijn. Controleer de hoofdsite of zoek in onze wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Pakketondertekeningssleutels" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Deze pagina toont de publieke GPG sleutels die gebruikt worden voor het " -"onderteken van pakketten in Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Kom te weten hoe Fedora je beschermt." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora maakt gebruik van GPG pakketondertekening om er zeker van te zijn dat" -" pakketintegriteit niet aangetast is." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Lees de FAQ voor meer informatie »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Momenteel gebruikte sleutels" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primair" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secundair" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Zoek je naar verouderde sleutels?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Verouderde pakketondertekeningssleutels" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Deze pagina toont de publieke GPG sleutels die niet meer gebruikt worden " -"voor het onderteken van pakketten in Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Verouderde en ongebruikte sleutels" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG sleutel" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Pakketten op installatie media worden ondertekend met deze sleutel. De " -"relevante dnf repositories zijn fedora, fedora-" -"updates voor Fedora 7-9, en core en core-" -"updates voor Fedora Core (Versie 6 en eerder). Zie http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html voor informatie waarom deze " -"sleutel verouderd is." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 test" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Als je deelneemt aan het testen van pakketten, dan is dit de sleutel die je " -"moet gebruiken om deze pakketten te controleren. Deze sleutel wordt gebruikt" -" voor het ondertekenen van de pakketten in de fedora-" -"testing repository. Zie http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html voor informatie waarom deze " -"sleutel verouderd is." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 test" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 test" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Als je gebruik maakt van Fedora Extras met Fedora Core 6, gebruik je dit " -"pakket van de extras repository. Deze sleutel zal niet meer" -" gebruikt worden nadat Fedora Core 6 en Extras EOL bereiken (7 december " -"2007). Deze sleutel is geen deel meer van het fedora-" -"release pakket in Fedora 7 en nieuwere vrijgaven." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Deze sleutel werd gebruikt voor pakketten die vrijgegeven werden door het " -"Fedora Legacy project om vernieuwingen te voorzien voor vrijgaven die " -"officieel EOL zijn. Het Fedora Legacy project bestaat niet meer, dus deze " -"sleutel wordt niet meer gebruikt voor het onderteken van pakketten. Deze " -"sleutel is geen deel meer van het fedora-release pakket in " -"Fedora 7 en nieuwere vrijgaven." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Pakketondertekening FAQ" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Kom te weten hoe Fedora gebruikt maakt van GPG voor het ondertekenen van " -"pakketten om je veiligheid te garanderen." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"Hoe gebruikt Fedora Project GPG-sleutels om pakketten te ondertekenen?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Elk stabiel RPM pakket wat uitgegeven wordt door het Fedora Project is " -"ondertekend met een GPG handtekening. Standaard zullen dnf en de grafische " -"updategereedschappen deze handtekeningen verifiëren en weigeren om een " -"pakket te installeren dat niet ondertekend is of een slechte handtekening " -"heeft. Je moet altijd de handtekening van een pakket controleren voordat je" -" het installeert. Deze handtekeningen verzekeren dat de pakketten die je " -"installeert overeenkomen met wat het Fedora Project gemaakt heeft en dat ze " -"niet veranderd zijn (per ongeluk of kwaadwillig) door een spiegel of website" -" die de pakketten aanbiedt." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Paketten die van het Kojibouwsysteem gedownload kunnen worden bevatten geen " -"handtekeningen, dus deze moet met voorzichtigheid gebruiken. Ook bleeding-" -"edge pakketten in Rawhide zijn altijd ontertekend." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Sleutels importeren" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"De sleutels bevinden zich in het fedora-release pakket, je " -"kunt ze vinden in de /etc/pki/rpm-gpg map. Merk op dat " -"niet alle sleutels in deze map gebruikt worden door het Fedora project -- " -"sommige worden gebruikt voor het ondertekenen van Red Hat Enterprise Linux " -"pakketten of worden helemaal niet meer gebruikt. Als je Red Hat Enterprise " -"Linux pakketten gebruikt, zie https://www.redhat.com/security/team/key. De sleutels die " -"door Fedora gebruikt worden zijn aangezet in de dnf repository configuratie," -" dus je hoeft ze in het algemeen niet handmatig te importeren in de rpm " -"database." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Naast het fedora-release pakken en deze webpagina, kun je de Fedora sleutels" -" downloaden van een publieke sleutelserver, zoals keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Voor sommige repositories, zoals repositories met stabiele en test pakketten" -" in standaard configuratie, is dnf in staat om de juiste " -"sleutel voor de repository te vinden en vraagt de gebruiker voor bevestiging" -" voordat de sleutel geïmporteerd wordt, als de sleutel nog niet eerder in " -"de rpm database geïmporteerd is." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Je kunt altijd sleutels handmatig importeren in de RPM-database met het " -"volgende commando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Bekijk de rpmhandleiding voor meer informatie." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Als je de sleutels die op jouw systeem geïnstalleerd zijn zou willen " -"verifiëren, kun je deze importeren in GnuPG's sleutelbos en controleren of " -"de vingerafdruk van deze sleutels correct zijn. Voorbeeld:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Haal Fedora Server binnen: de nieuwste technologie voor je toepassingen en " -"services" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Draai je toepassingen op een Linux server OS met de nieuwste open source " -"technologie." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Nu met inhoud in meerdere versies met onafhankelijke levenscycli — dus je " -"server zowel snel als langzaam bewegen." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server is een korte-levenscyclus, gemeenschap-ondersteund server " -"besturingssysteem dat doorgewinterde systeembeheerders met ervaring met enig" -" besturingssysteem in staat stelt om gebruik te maken van de meest recente " -"technologieën die beschikbaar zijn in de open-bron gemeenschap." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Modularity introduceren" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularity is een nieuwe modulaire repository welke extra softwareversies " -"bevat met onafhankelijke levenscycli." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Kies de juiste versie van een toepassing of een taal stack die je nodig " -"hebt, en behoud die zelfs als je OS upgrades naar een nieuwere versie." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Kom meer te weten over Modularity" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Gemakkelijk beheer" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Beheer je systeem eenvoudig met de krachtige en moderne interface van " -"Cockpit. Bekijk en monitor systeemperformance en status, en pas container-" -"gebaseerde services toe en beheer ze." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Database services" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server bevat een enterprise-class, schaalbare database server " -"aangedreven door het open-bron PostgreSQL project." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Volledige Enterprise Domain oplossing" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Verhoog het niveau van je Linux netwerk met geavanceerde identiteitbeheer, " -"DNS, certificaat services, Windows(TM) domein integratie in je hele omgeving" -" met FreeIPA, de open-bron domain controller." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"“Voor DevConf US had ik een systeem nodig om de conferentie te beheren. Ik " -"ontdekte regcfp, gemaakt door Patrick Uiterwijk, welke aan mijn behoefte " -"leek te voldoen. Het wil echter niet in nodejs 8 in F27 draien. Het " -"opstarten van F28 Server en het kiezen van de \"nodejs:6\" stream, werkte " -"voortreffelijk." - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "DevConf US Conferentie Co-Chair" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Ben je er klaar voor om Fedora Server uit te proberen?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Download Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Download Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB installatie image" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"De Fedora Server installatie image laat je media maken voor je computer die " -"opstart met het installatieprogramma zodat je Fedora Server direct op je " -"harde schijf kunt installeren" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Om deze image te gebruiken, heb je een station nodig dat DVD's kan maken of " -"\"branden\", of een USB flash drive die tenminste even groot is als de " -"image." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Als je nieuwe modulaire eigenschappen van Fedora Server wilt uitproberen, " -"bezoek dan de Using Modules sectie van de " -"Modularity Documentation. Als meer informatie over Modularity in het " -"algemeen zoekt, ga dan naar de website op " -"pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall Image:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit %sMB image" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Download F%(rel)s Alfa images" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Download F%(rel)s Beta images" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Verkrijg meer Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® technologie" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Hoe verander ik de Live image in opstartbare media?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Na het downloaden van de image, maak je hiervan opstartbare media. Je brandt de image op een lege DVD schijf, of je schrijft de the image op een USB flash drive." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Hoe start ik op van de media?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Raadpleeg de documentatie van je computersysteem voor de procedure voor het " -"opstarten van media anders dan de ingebouwde harde schijf. Het proces van " -"variëren afhankelijk van de fabrikant en het model van je computer. Je kunt " -"deze algemene tips misschien nuttig vinden." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Download Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Download Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit %sGB Installatie image" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dit is pre-release software en wordt ondersteund door de Server Working Group. Stel vragen hierover op hun " -"maillijst of %(team_irc)s op freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Lees de Vrijgave-informatie voor meer " -"informatie over veranderingen en nieuwe functies, en de Common Bugs pagina voor informatie over " -"veelvoorkomende fouten en hoe je ze kunt vermijden." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Wanneer wordt Fedora %s vrijgegeven?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Bekijk alle belangrijke mijlpalen van het vrijgave schema..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Zodra je een image gedownload hebt, verifieer je het voor beveiliging en " -"integriteit. Om je image te verifiëren, begin je met het downloaden van het " -"onderstaande CHECKSUM bestand in dezelfde map als waarin je de image " -"gedownload hebt en je volgt deze instructies " -"op." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Haal Fedora Workstation binnen: het beste desktop OS voor software " -"ontwikkelaars" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Dit is het Linux werkstation waarop je gewacht hebt." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation is een betrouwbaar, gebruikersvriendelijk en krachtig " -"besturingssysteem voor je laptop of desktop computer. Het ondersteunt een " -"breed scala ontwikkelaars, van hobbyisten en studenten tot professionals in " -"bedrijfsomgevingen." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“De overvloed van gereedschappen aangeboden door
Fedora staat me toe " -"om de klus te klaren.
Het werkt gewoon.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM performance engineer" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Strakke gebruikersinterface" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Richt je op je code in de GNOME 3 bureaubladomgeving. GNOME is gebouwd met " -"terugkoppeling van ontwikkelaars en minimaliseert afleiding, dus kun je je " -"concentreren op wat belangrijk is." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Complete open bron gereedschapskist" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Laat je niet belemmeren bij het vinden of bouwen van de gereedschappen die " -"je nodig hebt. Met Fedora's complete set open bron talen, gereedschappen en " -"hulpprogramma's is alles met een klik of een commandoregel tot je " -"beschikking. Er is zelfs project hosting en repositories zoals COPR om je " -"code en builds snel beschikbaar te maken voor de community." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes & andere virtuele gereedschappen" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Krijg virtuele machines snel aan de praat om je code op meerdere platforms " -"te testen met gebruik van GNOME Boxes. Of gebruik krachtige " -"virtualisatiegereedschappen met script mogelijkheden voor nog meer controle." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Ingebouwde Docker ondersteuning" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Breng je apps onder in containers, of gebruik apps in containers standaard " -"aanwezig in Fedora, met gebruik van de nieuwste technologie zoals Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Ben je er klaar voor om Fedora Workstation uit te proberen?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Download Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Download Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer voor Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bit %s GB ISO voor Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Downloaden is alleen nodig voor nieuwe installaties. Om te upgraden volg je " -"deze instructions." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer voor Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Download Fedora Media Writer voor je besturingssysteem." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Heb je instructies nodig? Of een andere versie?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Fedora Workstation draaien" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Om Fedora Workstation te draaien, heb je het volgende nodig:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (download hierboven)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Een USB Flash drive met ten minste %s GB beschikbare ruimte" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation wordt aangeboden via Fedora Media Writer. Download dit " -"programma voor jouw ondersteunde platform en volg de " -"prompts op om een live versie aan te maken (zie 'Wat betekent \"Live\"?' " -"hier rechts) van Fedora Workstation op een USB flash drive. Je kunt daarna " -"de live versie van Fedora Workstation uitvoeren vanaf je USB flash drive." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Optioneel kun je Fedora Workstation installeren op een laptop of desktop " -"computer die ten minste een 1 GHz processor, 1 GB RAM en 10 GB ruimte " -"beschikbaar heeft. Om dit te doen voer je de live versie van Fedora " -"Workstation uit vanaf je USB flash drive op de computer waarop je wilt " -"installeren, je voert de Fedora Media Writer toepassing uit en je volgt de " -"aanwijzingen op het scherm om de installatie uit te voeren." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Ondersteunde platformen" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer ondersteunt de volgende platformen:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"We hebben automatisch ontdekt dat je Mac OS X draait en " -"bieden die versie aan om te downloaden. Als we je besturingssysteem verkeerd" -" gedetecteerd heben of je wilt een andere versie downloaden, klik dan " -"hieronder op de \"Bekijk alle platform downloads\" knop." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"We hebben automatisch ontdekt dat je Linux draait en bieden" -" die versie aan om te downloaden. Als we je besturingssysteem verkeerd " -"gedetecteerd heben of je wilt een andere versie downloaden, klik dan " -"hieronder op de \"Bekijk alle platform downloads\" knop." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"We hebben automatisch ontdekt dat je Windows draait en " -"bieden die versie aan om te downloaden. Als we je besturingssysteem verkeerd" -" gedetecteerd heben of je wilt een andere versie downloaden, klik dan " -"hieronder op de \"Bekijk alle platform downloads\" knop." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Bekijk alle platform downloads" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Beschikbaar via DNF voor Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Meer details" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Hoe gebruik je deze ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifieer deze image" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit %sGB Live image" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bit %sGB Live image" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall images:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit %sMB image" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Atomic Workstation uitproberen" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "Atomic biedt een onveranderlijk OS image en vernieuwingen via OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-bit %sGB Atomic image" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Kom meer te weten" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Vrijgave aankondiging" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Lees de volledige Vrijgave aankondiging op Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Vrijgave-informatie" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Kom meer te weten over de veranderingen sinds de vorige versie van Fedora en" -" de minimale vereisten en aanbevelingen om Fedora uit te voeren." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Installatiegids" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"We raden je aan om dit te bekijken voordat je je systeem installeert, omdat " -"het vele veel voorkomende vragen beantwoord." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Common Bugs" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Een uitstekende hulpbron om te raadplegen als je tegen problemen aanloopt " -"bij het installeren of uitvoeren van Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Wat betekent \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer zal een complete, uitvoerbare Fedora Workstation " -"aanmaken die je meteen vanaf een USB drive kunt uitvoeren. Je kunt de Live " -"image gebruiken voor het uittesten en spelen met Fedora voordat je " -"veranderingen maakt op je harde schijf." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Als je er klaar voor bent, kun je Fedora installeren op je harde schijf " -"vanuit deze \"live\" versie van Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Download Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Download Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Upgrade via DNF als je Fedora al gebruikt." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Dit is pre-release software en wordt ondersteund door de Workstation Working Group. Stel vragen hierover op" -" hun maillijst of %(team_irc)s op freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Het uitvoeren van Pre-Release Versies van Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Om een prerelease versie van Fedora Workstation uit te voeren, heb je het " -"volgende nodig:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Download is hier onder beschikbaar)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Een live image ISO van de pre-release versie van Fedora " -"die je wilkt uitvoeren" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"WAARSCHUWING: Deze procedure vernietigt alle data op je USB media. Wees er " -"zeker van dat je een back-up maakt van belangerijke bestanden op je USB " -"media voordat je dit doet." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Download de Fedora Media Writer app hier onder." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Download de gewenste ISO image." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Open de Fedora Media Writer app. Je moet misschien een wachtwoord aanbieden " -"om de app de juiste rechten te geven." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Selecteer \"Aangepast OS...\" uit de lijst." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Op de Aangepast OS pagina, selecteeer je de \"Selecteer Live ISO\" knop." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"In het bestandselectie venster, zoek en selecteer je de ISO image die je " -"gedownload hebt." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Sluit je USB stick aan op de computer. Als je de USB stick eerder gebruikt " -"hebt om live media te maken, moet je deze misschien herstellen naar de " -"fabrieksinstelling. De app zal in dit geval je hierom vragen" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Selecteer \"Live USB aabmaken\" om de image te schrijven. Wacht to het " -"process klaar is voordat je de media verwijdert en de app afsluit." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Veriffieer 64-bit!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Verifieer 32-bit!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Hoe test je pre-releases" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Fedora wiki gids voor hoe je helpt met het testen van pre-release versies " -"van Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architectuur" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Start AMI-instance" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Selecteer de dichtstbijzijnde regio" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Start het op!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Exportbepalingen" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Lees de volledige exportbepalingen" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Door te klikken op Fedora en deze te downloaden, ga je ermee akkoord om te " -"voldoen aan de volgende voorwaarden en condities." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Lees meer >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Over" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Over Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsors" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Legaal" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Verkrijg Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Verkrijg Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Verkrijg Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternatieve downloads" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Ondersteuning" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Verkrijg hulp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Vraag het Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Bekende bugs" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora Ontwikkelingsportaal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installatiegids" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Doe mee" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Aan Fedora deelnemen" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG's" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora Account systeem" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedoragemeenschap" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora wordt gesponsord door Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Kom meer te weten over de relatie tussen Red Hat en Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. en anderen." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Stuur commentaar of correcties naar het websites team." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Verander de taal" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -" biedt meer." - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Gestroomlijnd. Krachtig. Klaar voor Everycloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"De nieuwste technologie. Een stabiele fundering. Bij elkaar voor je " -"toepassingen en services." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentatie en andere hulpbronnen" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Voor het installeren van Fedora wil je er misschien zeker van zijn dat je " -"systeem voldoet aan de minimale eisen voor Fedora. Raadpleeg de online vrijgave-informatie voor het " -"bekijken van de minimale eisen en aanbevelingen." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Er is ook een complete Installatiegids " -"beschikbaar. We bevelen je aan om deze door te kijken voor het installeren " -"van je systeem, omdat het antwoord geeft op veel voorkomende vragen." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Andere manieren voor het verkrijgen van media" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Je kunt installatiemedia for Fedora aankopen van online " -"aanbieders of een lokale aanbieder in je omgeving." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Kun je je de prijs van installatiemedia niet veroorloven? Vraag dan Fedora " -"installatiemedia aan van het Fedora Free Media Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG sleutelinformatie" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Sleutel ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Vingerafdruk" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Haal het hier:" diff --git a/getfedora.org/po/nn.po b/getfedora.org/po/nn.po deleted file mode 100644 index 8d99112..0000000 --- a/getfedora.org/po/nn.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Norwegian Nynorsk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/no.po b/getfedora.org/po/no.po deleted file mode 100644 index af0a4ab..0000000 --- a/getfedora.org/po/no.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora-web/language/no/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/nso.po b/getfedora.org/po/nso.po deleted file mode 100644 index 9bf8fba..0000000 --- a/getfedora.org/po/nso.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Northern Sotho\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nso\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/or.po b/getfedora.org/po/or.po deleted file mode 100644 index 73d54f7..0000000 --- a/getfedora.org/po/or.po +++ /dev/null @@ -1,2446 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:25-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: or\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "ଫେଡ଼ୋରା ପ୍ରାୟୋଜକମାନେ" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "ପରବର୍ତ୍ତି, ଫେଡ଼ୋରାର GPG କିକୁ ଆମଦାନୀ କରନ୍ତୁ:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "ବର୍ତ୍ତମାନ, ଯାଞ୍ଚ କରନ୍ତୁ ଯେ CHECKSUM ଫାଇଲଟି ବୈଧ ଅଟେ:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM ଫାଇଲରେ ନିମ୍ନଲିଖିତ କି ମାନଙ୍କ ମଧ୍ଯରୁ ଗୋଟିଏ ଭଲ ହସ୍ତାକ୍ଷର ଅଛି:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"ଯଦି ଆପଣ ହାତରେ ଭରଣ କରିଛନ୍ତି, ତେବେ URL କୁ ପୁଣିଥରେ ଯାଞ୍ଚ କରନ୍ତୁ. ଆପଣ ଏହାକୁ ସଠିକ" -" ଭାବରେ ନକଲ କରିଛନ୍ତି କି?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "କିଗୁଡ଼ିକୁ ଆମଦାନୀ କରୁଅଛି" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"ନିମ୍ନଲିଖିତ ନିର୍ଦ୍ଦେଶ ବ୍ୟବହାର କରି ଆପଣ ସର୍ବଦା RPM's ତଥ୍ୟାଧାର ମଧ୍ଯକୁ କି " -"ପଠାଇପାରିବେ:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "ଅଧିକ ସୂଚନା ପାଇଁ rpm ନିୟମ ପୁସ୍ତକକୁ ଅନୁସରଣ କରନ୍ତୁ." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"ଏଠାରେ ତାଲିକାଭୁକ୍ତ କି ସହିତ ଆପଣଙ୍କର ତନ୍ତ୍ରରେ ସ୍ଥାପିତ କି ମେଳ ଖାଉଛି କି ନାହିଁ " -"ଜାଣିବା ପାଇଁ ଯଦି ଆପଣ ଯାଞ୍ଚ କରିବାକୁ ଚାହୁଁଛନ୍ତି, ତେବେ ଆପଣ କିର ଅଙ୍ଗୁଳିଚିହ୍ନକୁ " -"ମେଳାଇବା ପାଇଁ GnuPG କୁ ବ୍ୟବହାର କରିପାରିବେ. ଉଦାହରଣ ସ୍ୱରୂପ:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "ବିବରଣୀ" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "ପ୍ରାୟୋଜକମାନେ" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "ସହାୟତା ନିଅନ୍ତୁ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "ଫେଡ଼ୋରାରେ ଅଂଶଗ୍ରହଣ କରନ୍ତୁ" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/pa.po b/getfedora.org/po/pa.po deleted file mode 100644 index d5fc7b9..0000000 --- a/getfedora.org/po/pa.po +++ /dev/null @@ -1,2448 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:25-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "ਅੱਗੇ, ਫੇਡੋਰਾ ਦੀ GPG ਕੁੰਜੀਆਂ ਇੰਪੋਰਟ ਕਰੋ:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"ਤੁਸੀਂ GPG ਕੁੰਜੀਆਂ ਦੇ ਵੇਰਵੇ ਦੀ ਜਾਂਚ ਇੱਥੇ ਕਰ ਸਕਦੇ " -"ਹੋ।" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "ਹੁਣ ਢੁੱਕਵੀਂ CHECKSUM ਫਾਇਲ ਦੀ ਜਾਂਚ ਕਰੋ" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM ਫਾਇਲ ਦੇ ਵਧੀਆਂ ਦਸਤਖਤ ਹੇਠਲੀਆਂ ਕੁੰਜੀਆਂ ਵਿੱਚੋਂ ਹੋਣੇ ਚਾਹੀਦੇ ਹਨ:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ਡਾਊਨਲੋਡ" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"URL ਤੇ ਡਬਲ-ਕਲਿੱਕ ਕਰੋ, ਜੇ ਤੁਸੀਂ ਖੁਦ ਭਰਿਆ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਠੀਕ ਤਰਾਂ ਕਾਪੀ " -"ਕੀਤਾ ਹੈ?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "ਫੇਡੋਰਾ ੧੩" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "ਫੇਡੋਰਾ ੧੪" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "ਪੈਕੇਜ ਸਾਈਨ ਕਰਨ ਲਈ ਫੇਡੋਰਾ ਪਰੋਜੈਕਟ ਕਿਵੇਂ GPG ਕੁੰਜੀਆਂ ਵਰਤਦਾ ਹੈ?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "ਕੁੰਜੀਆਂ ਇੰਪੋਰਟ ਕਰਨੀਆਂ" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"ਤੁਸੀਂ ਹਮੇਸ਼ਾ ਕੁੰਜੀ ਨੂੰ RPM ਦੇ ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਹੇਠਲੀ ਕਮਾਂਡ ਨਾਲ ਖੁਦ ਇੰਪੋਰਟ ਕਰ ਸਕਦੇ" -" ਹੋ:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ rpm ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ।" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"ਜੇ ਤੁਸੀਂ ਜਾਂਚ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ ਕਿ ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਤੇ ਇੰਸਟਾਲ ਕੀਤੀਆਂ ਕੁੰਜੀਆਂ " -"ਇੱਥੇ ਇੰਸਟਾਲ ਕੁੰਜੀਆਂ ਨਾਲ ਮੇਲ ਖਾਂਦੀਆਂ ਹਨ, ਤਾਂ ਤੁਸੀਂ GnuPG ਨੂੰ ਇਹ ਜਾਂਚ ਕਰਨ ਲਈ " -"ਵਰਤ ਸਕਦੇ ਹੋ ਕਿ ਕੁੰਜੀ ਦੇ ਫਿੰਗਰ-ਪਰਿੰਟ ਮੇਲ ਖਾਂਦੇ ਹਨ। ਜਿਵੇਂ:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "ਨਿਰਯਾਤ ਨਿਯਮਾਂਵਲੀ" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "ਇਸ ਬਾਰੇ" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "ਫੇਡੋਰਾ ਬਾਰੇ" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "ਸਹਿਯੋਗ" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "ਮੱਦਦ ਲਵੋ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਗਾਈਡ" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "ਜੁਆਇਨ ਕਰੋ" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "ਫੇਡੋਰਾ ਜੁਆਇੰਨ ਕਰੋ" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "ਪਲੈਨਿਟ ਫੇਡੋਰਾ" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "ਫੇਡੋਰਾ SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ਫੇਡੋਰਾ ਅਕਾਊਂਟ ਸਿਸਟਮ" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "ਫੇਡੋਰਾ ਕਮਿਊਨਿਟੀ" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "ਫੇਡੋਰਾ Red Hat ਦੁਆਰਾ ਸਪਾਂਸਰ ਕੀਤਾ ਹੈ।" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ਠੀਕ ਹੈ" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/pl.po b/getfedora.org/po/pl.po deleted file mode 100644 index 22e3e42..0000000 --- a/getfedora.org/po/pl.po +++ /dev/null @@ -1,2831 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Daniel Krawczyk , 2014 -# Dimitris Glezos , 2011 -# Piotr Drąg , 2014 -# Copyright (C) 2015 ORGANIZATION -# Piotr Drąg , 2014-2015 -# Piotr Drąg , 2015. #zanata -# Piotr Drąg , 2016. #zanata -# Piotr Drąg , 2017. #zanata -# Piotr Drąg , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-14 12:10-0400\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" -"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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Zasady postępowania Projektu Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Zasady postępowania Projektu Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Członkowie społeczności powinni postępować zgodnie z poniższymi zasadami." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Zasady postępowania" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Społeczność Fedory składa się z zawodowców i wolontariuszy z całego świata, " -"pracujących nad całą dystrybucją, od kodu po marketing. Różnorodność to " -"jedna z naszych mocnych stron, ale może też prowadzić do problemów z " -"komunikacją. Z tego powodu mamy kilka zasad, do których prosimy się stosować" -" podczas używania zasobów projektu." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Nie jest to wyczerpująca lista rzeczy, których nie wolno robić, a raczej " -"pewien przewodnik ułatwiający właściwe zachowanie wobec siebie nawzajem." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Bądź rozważny. Efekty twojej pracy będą używane przez innych, a z kolei ty " -"będziesz zależał od pracy innych. Każda podjęta decyzja wpływa na " -"użytkowników i twoich kolegów, i powinieneś wziąć te konsekwencje pod uwagę " -"podczas podejmowania decyzji." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Szanuj innych. Nie wszyscy zgadzamy się ze sobą przez cały czas, ale różnica" -" zdań nie jest wymówką dla złego zachowania i złych manier. Czasami każdy " -"odczuwa frustrację, ale nie możemy pozwolić, aby frustracja zmieniła się w " -"wycieczki osobiste. Ważne jest, aby pamiętać, że społeczność, w której " -"ludzie czują się nieswojo lub zagrożeni nie jest społecznością produktywną. " -"Członkowie społeczności Fedory powinni szanować innych współtwórców, a także" -" osoby spoza społeczności i użytkowników Fedory." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Kiedy się nie zgadzamy, próbujemy zrozumieć dlaczego. Różnice zdań, zarówno " -"społeczne, jak i techniczne, zdarzają się cały czas i Fedora nie jest " -"wyjątkiem. Ważne jest, aby rozwiązywać nieporozumienia i różnice zdań w " -"sposób konstruktywny." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Pamiętaj, że każdy jest inny. Siła Fedory pochodzi z jej zróżnicowanej " -"społeczności, osób z różnych środowisk. Różni ludzie mają różne spojrzenia " -"na problemy. Niemożliwość zrozumienia, dlaczego ktoś ma inne zdanie nie " -"oznacza, że nie ma racji. Nie zapominaj, że to ludzka rzecz błądzić i " -"obwinianie siebie nawzajem donikąd nas nie zaprowadzi, a raczej staraj się " -"pomóc rozwiązywać problemy i uczyć się z własnych pomyłek." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Pobierz Fedorę: system operacyjny oparty na jądrze Linux dla programistów, " -"administratorów i nie tylko" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Wybierz wolność. Wybierz Fedorę." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Mniej ustawiania, więcej innowacji. Wybierz rodzaj Fedory

" -"dostosowany do swoich potrzeb i od razu zabierz się do pracy." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Wydano Fedorę %(rel)s %(state)s! Jest dostępna w dziale " -"Pobieranie." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Wydano Fedorę %(rel)s! Wypróbuj ją już teraz." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Pobierz teraz" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation jest łatwym w użyciu systemem operacyjnym dla laptopów i " -"komputerów stacjonarnych, zawierającym pełny zestaw narzędzi dla " -"programistów i twórców wszelkiego rodzaju." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Pobierz teraz" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server jest elastycznym systemem operacyjnym o wielu możliwościach, " -"zawierającym najlepsze i najnowsze technologie dla centrów danych. Umożliwia" -" on kontrolowanie całej infrastruktury i usług." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic dostarcza najlepszą platformę dla stosu aplikacji Linux-" -"Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedorę można zawsze swobodnie używać, zmieniać i rozprowadzać. Tworzą ją " -"ludzie na całym świecie, pracując wspólnie jako społeczność Projektu Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Inne warianty Fedory" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Społeczność Fedory wydaje także obrazy dla architektury ARM, " -"alternatywne obrazy Live oraz inne warianty Fedory dostosowane do " -"konkretnych zastosowań. Można je przeglądać na witrynach Obrazy FedoryFedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Bądź na bieżąco" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Chcesz do nas dołączyć? " -"Dowiedzieć się, co dzieje się w społeczności? Fedora Magazine zawiera najnowsze " -"aktualności." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Dokumentacja" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Więcej informacji o bieżącym wydaniu można znaleźć w Informacjach o wydaniu." -" Oficjalna dokumentacja zawiera więcej " -"informacji o tym, jak używać Fedory oraz wymagania systemowe." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Pomoc" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Portal Ask Fedora zawiera archiwum pytań od innych " -"użytkowników i umożliwia zadanie własnych." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponsorzy Fedory" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Sponsorami Projektu Fedora są poniższe organizacje…" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Główny sponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. jest głównym sponsorem Projektu Fedora, " -"dostarczając wiele zasobów, w tym wsparcie w postaci pełnoetatowych " -"pracowników, sprzętu infrastruktury, opłacania wydarzeń i porad prawnych." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Projekt Fedora dziękuje także następującym sponsorom za dostarczanie " -"znaczącego wsparcia:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Zainteresowani sponsorowaniem czegoś Fedorze?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Prosimy skontaktować się z admin@fedoraproject.org (w języku angielskim) lub " -"zajrzeć na kanał #fedora-admin w sieci " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Sprawdzanie poprawności pobranego obrazu" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Instrukcje sprawdzania poprawności i plików CHECKSUM" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Jak sprawdzić poprawność obrazu?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Po pobraniu obrazu sprawdź jego bezpieczeństwo i integralność. Aby sprawdzić" -" poprawność obrazu, najpierw pobierz odpowiedni plik CHECKSUM do tego samego" -" katalogu, w którym znajduje się obraz." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Obrazy 64-bitowe" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Obrazy 32-bitowe" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Atomic Workstation" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "Obrazy AArch64" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "Surowe obrazy AArch64" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Obrazy ISO Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Obrazy Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Kontener" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Następnie zaimportuj klucze GPG Fedory:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Można sprawdzić informacje o kluczach GPG w tym " -"miejscu." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Teraz sprawdź, czy plik CHECKSUM jest prawidłowy:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Plik CHECKSUM powinien posiadać dobry podpis z jednego z poniższych kluczy:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Drugorzędne architektury Fedory 26 (AArch64, PPC64, PPC64le, s390 i s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Na koniec sprawdź, czy suma kontrolna obrazu zgadza się z tą z pliku " -"CHECKSUM:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "Jeśli zostanie wypisane, że plik jest prawidłowy, to można go użyć." - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Jak sprawdzić poprawność pobranego obrazu w innym systemie operacyjnym?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Instrukcje sprawdzania poprawności obrazu." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "Pobierz Fedorę Atomic: najlepszą platformę dla kontenerów aplikacji" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Wdrażaj i skaluj aplikacje w kontenerach za pomocą niezmiennej " -"infrastruktury." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Pobierz lub uruchom w publicznej chmurze" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"„Wybraliśmy Fedorę Atomic jako podstawę Navops Launch, naszego systemu " -"nadzoru klastrów Kubernetes, ponieważ nasi klienci mają zaufanie do systemów" -" operacyjnych firmy Red Hat. Uwielbiamy niezmienność Fedory Atomic, która " -"jest idealna do obsługi kontenerów.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "główny architekt Navops w firmie Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host z Projektu Atomic to lekka, niezmienna platforma, zaprojektowana" -" wyłącznie w celu uruchamiania aplikacji w kontenerach." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Wersja Atomic Host Fedory używa tych samych repozytoriów pakietów co Fedora " -"Server, i dostarcza najnowsze wersje platformy Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Aktualizacje OSTree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Automatycznie aktualizuj system za pomocą najnowszego OSTree. Serwery mogą " -"być identyczne, a problematyczne aktualizacje można łatwo odwracać." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Wiersz poleceń Atomic" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Zarządzaj kontenerami Docker, kontenerami systemowymi i aplikacjami Atomic " -"za pomocą jednego, wygodnego narzędzia wiersza poleceń." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Zoptymalizowane dla Kubernetes i OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Budujesz klaster Kubernetes lub Origin, aby uruchamiać aplikacje w " -"kontenerach? Uruchamiaj je na Fedorze Atomic, dostarczającej platformę na " -"mniejszym systemie operacyjnym." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Chcesz wypróbować Fedorę Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Pobieranie Fedory Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Dziękujemy za pobranie Fedory!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Pobieranie powinno rozpocząć się za kilka sekund. Jeśli nie, kliknij " -"odnośnik poniżej:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Sprawdź poprawność pobranego obrazu" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Po pobraniu obrazu sprawdź jego bezpieczeństwo i integralność. Aby sprawdzić" -" poprawność obrazu, najpierw pobierz odpowiedni plik CHECKSUM do tego samego" -" katalogu, w którym znajduje się obraz i postępuj zgodnie z tymi instrukcjami." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Sprawdź poprawność" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Pobieranie Fedory Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Pobieranie Fedory %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host jest budowane co dwa tygodnie." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Najnowsze obrazy nie spełniły kryteriów jakości. Dostępne obrazy zostały " -"wydane %(atomic_age)s dni temu. Blog Projektu Atomic zawiera aktualności i " -"informacje o błędach blokujących wydanie." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Najnowsze oficjalne obrazy Fedory Atomic Host zostały wydane %(atomic_age)s " -"dni temu." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Obrazy Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host to najnowocześniejszy system operacyjny oparty na modelu " -"Projektu Atomic, zaprojektowany wokół technologii Kubernetes i kontenerów. " -"Proszę zauważyć, że przeszły one kilka poziomów automatycznego testowania." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Prosimy przetestować nową wersję przed jej wdrożeniem. W " -"razie wystąpienia problemu, narzędzia Atomic Host umożliwiają łatwy powrót " -"do poprzedniego wydania. Jeśli to się wydarzy, to prosimy nam pomóc " -"zgłaszając błąd lub nadsyłając poprawkę." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Obrazy Fedory Atomic Host są aktualizowane mniej-więcej co dwa " -"tygodnie, w przeciwieństwie do sześciomiesięcznego cyklu " -"wydawniczego Fedory. Z powodu szybkiego tempa rozwoju wspierane jest tylko " -"najnowsze wydanie Fedory." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Proszę zauważyć, że różne nośniki Fedory Atomic Host są poddawane " -"automatycznemu testowaniu w różnym stopniu. Więcej informacji o " -"Projekcie Atomic można znaleźć na stronie projectatomic.io, a obecny stan testów można znaleźć tutaj." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Obrazy Atomic Host dla publicznej chmury EC2 firmy Amazon" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Poniższe odnośniki dostarczają listę dostępnych AMI sprzętowych maszyn " -"wirtualnych Atomic Host według regionów razem z przyciskami uruchamiającymi " -"je na koncie usługi Amazon Web Services. Dostępne są także identyfikatory " -"AMI do używania za pomocą Konsoli AWS lub narzędzi wiersza poleceń." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Format GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"AMI w formacie GP2 używają szybszych dysków SSD. Są one szybsze, ale koszt " -"będzie większy niż przy formacie standardowym." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "AMI obrazów GP2 HVM" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Zamknij" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "AMI dla Fedory %(rel)s GP2 Atomic Host HVM" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Region" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "Identyfikator AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Uruchom" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standardowy format" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"AMI o standardowym formacie są odpowiednie przy rzadkim dostępnie do danych " -"i obniżają koszty." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standardowe AMI HVM" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "AMI dla standardowej Fedory %(rel)s Atomic Host HVM" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standardowy format" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Obrazy Atomic Host dla oprogramowania Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Maszyny Vagrant dla Fedory Atomic Host są dostępne dla dostawców VirtualBox " -"i libvirt. Można uruchomić Fedorę Atomic Host w maszynie Vagrant pobierając " -"obrazy z Fedory lub używając narzędzi Vagrant do pobrania obrazów z chmury Vagrant firmy HashiCorp." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Obrazy dla Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Obrazy dla Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Obrazy maszyn Vagrant do wdrażania za pomocą oprogramowania Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Obraz VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Ten obraz jest odpowiedni do używania z oprogramowaniem Vagrant w systemach " -"macOS lub Windows." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Pobierz" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bitowy podstawowy obraz Vagrant dla VirtualBox (%s MB)" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Obraz libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Ten obraz jest odpowiedni do używania z oprogramowaniem Vagrant w systemie " -"Fedora." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bitowy podstawowy obraz Vagrant dla libvirt/KVM (%s MB)" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Obrazy dla narzędzi Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Obrazy dla narzędzi Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Poniższe polecenie umożliwia pobranie obrazów maszyn Vagrant z systemu Atlas firmy HashiCorp." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Jeśli poprzednio na komputerze używano Fedory %(rel)s Atomic Host, to można " -"ją zaktualizować do najnowszej wersji, wykonując:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Więcej informacji o uruchamianiu Vagrant w systemie Fedora Workstation " -"znajduje się na stronie wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Obrazy Atomic Host dla środowiska chmury" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Obraz Qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Fedora %(rel)s Cloud Atomic Host jako obraz w formacie Qcow2 do użycia za " -"pomocą OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bitowy obraz Qcow2 (%s MB)" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Surowy obraz" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Fedora %(rel)s Cloud Atomic Host w skompresowanym surowym obrazie. Należy " -"użyć tej Fedory w razie niepewności." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bitowy surowy obraz skompresowany za pomocą xz (%s MB)" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Inne pobierania" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Obraz ISO Atomic Host (%s MB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Obraz kontenera (%s MB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Wydanie testowe" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Pracujemy nad następnym wydaniem Fedory." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Pomóż nam przygotować F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Pobierz obrazy F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Jak testować wydania testowe" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Zasoby" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Projekt " -"Atomic: pierwsze kroki" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Dokumentacja o rozpoczynaniu pracy z Projektem Atomic/Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Projekt" -" Atomic: lista dyskusyjna" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Dołącz do listy dyskusyjnej projektu: atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Projekt Atomic: kanał IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Dołącz do kanału IRC Projektu Atomic #atomic w sieci " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Sprawdzanie poprawności" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Sprawdzanie poprawności obrazu" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Pobieranie Fedory %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Najnowsze obrazy Fedory Atomic Host zostały wydane " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Jest to oprogramowanie testowe, wspierane przez grupę roboczą Atomic. Prosimy kierować pytania (w " -"języku angielskim) na listę dyskusyjną grupy " -"lub kanał %(team_irc)s w sieci freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Wszystkie problemy powinny być zgłaszane przez Bugzillę firmy" -" Red Hat. Projekt Fedora nie gwarantuje stabilności lub użyteczności." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "AMI dla Fedory %(rel)s %(state)s GP2 Atomic Host HVM" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "AMI dla standardowej Fedory %(rel)s %(state)s Atomic Host HVM" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Maszyny Vagrant dla Fedory Atomic Host są dostępne dla dostawców VirtualBox " -"i libvirt. Można uruchomić Fedorę Atomic Host w maszynie Vagrant pobierając " -"obrazy z Fedory lub używając narzędzi Vagrant do pobrania obrazów z systemu Atlas firmy HashiCorp." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Fedora %(rel)s %(state)s Cloud Atomic Host jako obraz Qcow2 do użycia z " -"OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Fedora %(rel)s %(state)s Cloud Atomic Host w skompresowanym surowym obrazie." -" Należy użyć tej Fedory w razie niepewności." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projekt Fedora — nie odnaleziono strony" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: nie odnaleziono strony" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Przepraszamy, ale żądany plik lub strona nie została odnaleziona." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Rozwiązywanie problemów" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Należy dwa razy sprawdzić adres, jeśli wpisano go ręcznie. A może " -"niepoprawnie go skopiowano?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Błędny odnośnik? Prosimy skontaktować się z webmasterami " -"fedoraproject.org (w języku angielskim) i powiedzieć im, jaki odnośnik " -"tu przeniósł." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Plik lub strona mogła zostać przeniesiona. Prosimy sprawdzić stronę główną lub poszukać ich na wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Klucze podpisywania pakietów" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Ta strona zawiera listę publicznych kluczy GPG używanych do podpisywania " -"pakietów w Fedorze." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Dowiedz się o zabezpieczeniach Fedory." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora stosuje podpisywanie pakietów za pomocą GPG, aby zapewnić ich " -"integralność." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Najczęściej zadawane pytania »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Obecnie używane klucze" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Główny" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Drugorzędny" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Przestarzałe klucze." - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Przestarzałe klucze podpisywania pakietów" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Ta strona zawiera listę publicznych kluczy GPG nieużywanych już do " -"podpisywania pakietów w Fedorze." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Przestarzałe i nieużywane klucze" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora ≦ 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Klucz GPG Fedory" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Pakiety na nośniku instalacyjnym są podpisywane za pomocą tego klucza. " -"Odpowiednie repozytoria programu dnf to fedora, fedora-updates dla Fedory 7-9 oraz corecore-updates dla Fedory Core (wersja 6 i wcześniejsze). Proszę " -"zobaczyć http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html, aby dowiedzieć się, dlaczego " -"ten klucz jest przestarzały." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora ≥ 7 aktualizacje testowe" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Aktualizacje testowe Fedory" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Jeśli użytkownik uczestniczy w testowaniu pakietów, to jest klucz, którego " -"będzie używany do testowania pakietów. Ten klucz podpisuje pakiety, które " -"znajdują się w repozytorium fedora-testing. Proszę zobaczyć" -" http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html, aby dowiedzieć się, dlaczego " -"ten klucz jest przestarzały." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Testowe pakiety Fedory 8-9" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Testowe pakiety Fedory 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Jeśli używana jest Fedora Extras z Fedorą Core 6, to należy użyć tego " -"pakietu z repozytorium extras. Ten klucz nie będzie dłużej " -"używany po osiągnięciu przez Fedorę Core 6 i Extras stanu EOL (7 grudnia " -"2007). Ten klucz nie jest zawarty w pakiecie fedora-release" -" w Fedorze 7 i późniejszych wydaniach." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Przestarzałe" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Ten klucz był używany dla pakietów, które zostały wydane przez projekt " -"Fedora Legacy, aby aktualizować wydania, które oficjalnie osiągnęły stan " -"EOL. Projekt Fedora Legacy już nie istnieje, więc ten klucz nie będzie już " -"używany do podpisywania pakietów. Ten klucz nie jest zawarty w pakiecie " -"fedora-release w Fedorze 7 i późniejszych wydaniach." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Najczęściej zadawane pytania o podpisywanie pakietów" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Informacje o tym, jak Fedora używa GPG do podpisywania pakietów, aby " -"zapewnić bezpieczeństwo użytkowników." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Jak Projekt Fedora używa kluczy GPG do podpisywania pakietów?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Każdy stabilny pakiet RPM publikowany przez Projekt Fedora jest podpisywany " -"za pomocą GPG. Domyślnie program dnf i graficzne narzędzia do aktualizacji " -"sprawdzają te podpisy i odmawiają instalowania wszystkich pakietów, które " -"nie są podpisane i posiadają błędne podpisy. Powinno się zawsze sprawdzać " -"podpisy pakietów przed ich instalowaniem. Podpisy zapewniają, że instalowany" -" pakiet został wyprodukowany przez Projekt Fedora i nie został zmieniony " -"(przypadkiem lub złośliwie) przez serwer lustrzany lub stronę WWW, na której" -" się znajduje." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Pakiety, które mogą zostać pobrane z systemu budowania Koji, nie zawierają " -"podpisów, więc powinny być używane z rozwagą. Podobnie najnowsze pakiety w " -"Rawhide nie zawsze są podpisane." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importowanie kluczy" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Klucze są zawarte w pakiecie fedora-release, można je " -"znaleźć w katalogu /etc/pki/rpm-gpg. Proszę zauważyć, że " -"nie wszystkie klucze w tym katalogu są używane przez Projekt Fedora — " -"niektóre są używane do podpisywania pakietów systemu Red Hat Enterprise " -"Linux lub w ogóle nie są już używane. Jeśli używane są pakiety systemu Red " -"Hat Enterprise Linux, to proszę zobaczyć stronę https://www.redhat.com/security/team/key. Klucze używane " -"przez Fedorę są włączone w konfiguracji repozytoriów programu dnf, więc " -"ogólnie rzecz biorąc, nie trzeba ich ręcznie importować do bazy danych RPM." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Dodatkowo poza pakietem fedora-release i tą stroną WWW, można pobrać klucze " -"Fedory z serwera kluczy publicznych, takiego jak keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Dla niektórych repozytoriów, takich jak te zawierające stabilne i testowe " -"pakiety, w domyślnej konfiguracji program dnf może znaleźć " -"właściwy klucz dla repozytorium i poprosić użytkownika o potwierdzenie przed" -" zaimportowaniem klucza, jeśli nie zostało to już zrobione." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Zawsze można zaimportować klucz do bazy danych RPM ręcznie za pomocą " -"następujących poleceń:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Podręcznik programu RPM zawiera więcej informacji." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Aby sprawdzić, czy zainstalowane w systemie klucze odpowiadają wymienionym " -"tu kluczom, można użyć programu GnuPG do sprawdzenia, czy odciski kluczy się" -" zgadzają. Na przykład:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "Pobierz Fedorę Server: najnowszą technologię dla aplikacji i usług" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Uruchamiaj aplikacje na serwerowym systemie Linux za pomocą najnowszych " -"technologii open source." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Teraz treść w wielu wersjach o niezależnych cyklach wydawniczych — aby " -"serwer mógł rozwijać się i szybko, i wolno." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server to często aktualizowany, wspierany przez społeczność serwerowy" -" system operacyjny udostępniający zaawansowanym administratorom systemów " -"najnowsze technologie dostępne w społeczności open source." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Przedstawiamy Modularity" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularity wprowadza nowe, modularne repozytorium z dodatkowymi wersjami " -"oprogramowania o niezależnych cyklach wydawniczych." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Wybierz wersję aplikacji lub języka odpowiednią dla siebie, i nie trać jej " -"nawet po aktualizacji systemu operacyjnego do nowszej wersji." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Więcej informacji o Modularity" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Łatwa administracja" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Za pomocą nowoczesnego interfejsu Cockpit o wielu możliwościach można prosto" -" zarządzać systemami. Umożliwia on wyświetlanie i monitorowanie wydajności i" -" stanu, a także wdrażanie i zarządzanie usługami opartymi o kontenery." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Usługi baz danych" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server dostarcza skalowalny serwer baz danych klasy enterprise, " -"oparty o projekt open source PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Kompletne rozwiązanie dla domen firmowych" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Ulepsz sieć linuksową za pomocą zaawansowanego zarządzania tożsamością, DNS," -" usługami certyfikatów oraz integracji z domenami Windows™ w całym " -"środowisku za pomocą FreeIPA, kontrolera domen open source." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"„W czasie DevConf US potrzebowałem systemu do zarządzania konferencją. " -"Odkryłem aplikację regcfp, autorstwa Patricka Uiterwijka, która wydawała się" -" pasować do moich potrzeb. Niestety, nie chciała działać w nodejs 8 z Fedory" -" 27. W Fedorze 28 Server ze strumieniem »nodejs:6« działała jak marzenie!”" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "współprzewodniczący konferencji DevConf US" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Chcesz wypróbować Fedorę Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Pobieranie Fedory Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Pobieranie Fedory %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bitowy obraz instalacyjny (%s GB)" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Obraz instalacyjny Fedory Server umożliwia utworzenie nośnika do " -"uruchomienia komputera bezpośrednio do instalatora." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Aby użyć tego obrazu, wymagany jest napęd, który może nagrywać płyty DVD lub" -" pendrive co najmniej o rozmiarze obrazu." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Aby wypróbować nowe modularne funkcje Fedory Server, prosimy przeczytać " -"sekcję Używanie modułów dokumentacji Modularity." -" Strona w serwisie Pagure zawiera więcej " -"ogólnych informacji o Modularity." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Obraz instalacji sieciowej:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bitowy obraz (%s MB)" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "Obraz AArch64 (%s MB)" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "Obraz ISO płyty DVD:" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "Surowy obraz dysku:" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Pobierz obrazy F%(rel)s Alfa" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Pobierz obrazy F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Inne warianty Fedory" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Technologia ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Jak zmienić obraz Live na uruchamialny nośnik?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Po pobraniu obrazu utwórz z niego uruchamialny nośnik. Nagraj" -" obraz na pustą płytę DVD lub zapisz go na pendrivie." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Jak uruchomić z nośnika?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Dokumentacja komputera powinna zawierać informacje o uruchamianiu z nośnika " -"innego niż wbudowany dysk twardy. Ten proces może się różnić w zależności od" -" producenta i modelu komputera. Te wskazówki mogą być " -"przydatne." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Pobieranie Fedory %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Pobieranie Fedory %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bitowy obraz instalacyjny (%s GB)" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Jest to oprogramowanie testowe, wspierane przez grupę roboczą Server. Prosimy kierować pytania (w " -"języku angielskim) na listę dyskusyjną grupy " -"lub kanał %(team_irc)s w sieci freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Informacje o wydaniu zawierają więcej " -"informacji o zmianach i nowych funkcjach, a strona Częste błędy zawiera informacje o często " -"spotykanych błędach i sposobach ich uniknięcia." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Kiedy wydana zostanie Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Wszystkie kluczowe kamienie milowe harmonogramu…" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Po pobraniu obrazu sprawdź jego bezpieczeństwo i integralność. Aby sprawdzić" -" poprawność obrazu, najpierw pobierz poniższy plik CHECKSUM do tego samego " -"katalogu, w którym znajduje się obraz i postępuj zgodnie z tymi instrukcjami." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Pobierz Fedorę Workstation: najlepszy system operacyjny dla programistów" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Najlepsza linuksowa stacja robocza." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation jest pewnym, przyjaznym systemem operacyjnym o wielu " -"możliwościach dla laptopów i komputerów stacjonarnych. Dostarcza on funkcje " -"niezbędne programistom, hobbistom, studentom i zawodowcom." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"„Zestaw narzędzi dostarczanych przez
Fedorę umożliwia mi wykonywanie " -"mojej pracy.
Fedora po prostu działa.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "inżynier wydajności JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Wygodny interfejs użytkownika" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Skup się na kodzie w środowisku pulpitu GNOME 3, zbudowanym we współpracy z " -"programistami, które nie rozprasza, umożliwiając skoncentrowanie się na tym," -" co jest naprawdę ważne." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Pełny zestaw narzędzi open source" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Zapomnij o szukaniu i budowaniu potrzebnych narzędzi. Dzięki pełnemu " -"zestawowi języków i narzędzi open source zawartych w Fedorze wszystko jest " -"dostępne jednym kliknięciem lub poleceniem. Fedora dostarcza także hosting " -"projektów i repozytoria COPR do tworzenia kodu i plików binarnych szybko " -"dostępnych dla całej społeczności." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes i inne narzędzia wirtualizacji" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Za pomocą programu GNOME Boxes można szybko uruchamiać maszyny wirtualne, " -"aby testować kod na wielu systemach. Jeszcze więcej możliwości dostarczają " -"potężne, skryptowalne narzędzia wirtualizacji." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Wbudowana obsługa Dockera" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Za pomocą najnowszej technologii Docker można tworzyć kontenery dla " -"aplikacji lub od razu je wdrażać." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Chcesz wypróbować Fedorę Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Pobieranie Fedory Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Pobieranie Fedory %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Fedora Media Writer (%s MB) dla systemu macOS" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bitowy obraz ISO (%s GB) dla systemu Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Pobranie Fedory jest wymagane tylko dla nowych instalacji. Aby ją " -"zaktualizować, skorzystaj z tych instrukcji." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Fedora Media Writer (%s MB) dla systemu Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Pobierz Fedora Media Writer dla wybranego systemu operacyjnego." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Instrukcje, inne wersje" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Uruchamianie Fedory Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Potrzebne są:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (do pobrania powyżej)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Pendrive z co najmniej %s GB wolnego miejsca" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation jest dostarczana za pomocą narzędzia Fedora Media Writer." -" Pobierz ten program dla używanego systemu i postępuj " -"zgodnie ze wskazówkami na ekranie, aby utworzyć wersję Live (po prawej " -"znajduje się wyjaśnienie, co to znaczy) Fedory Workstation na pendrivie." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Można też zainstalować Fedorę Workstation na laptopie lub komputerze " -"stacjonarnym mającym co najmniej procesor o prędkości 1 GHz, 1 GB pamięci " -"RAM i 10 GB miejsca na dysku. Aby to zrobić, uruchom wersję Live Fedory " -"Workstation z pendrive’a, włącz aplikację Fedora Media Writer i postępuj " -"zgodnie z instrukcjami na ekranie." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Obsługiwane systemy" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Systemy obsługiwane przez Fedora Media Writer:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "macOS" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Automatycznie wykryto system macOS i udostępniono tę wersję" -" do pobrania. Jeśli wykryto niewłaściwy system operacyjny lub chcesz pobrać " -"inną wersję, to proszę kliknąć przycisk „Wszystkie systemy” poniżej." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Automatycznie wykryto system Linux i udostępniono tę wersję" -" do pobrania. Jeśli wykryto niewłaściwy system operacyjny lub chcesz pobrać " -"inną wersję, to proszę kliknąć przycisk „Wszystkie systemy” poniżej." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Automatycznie wykryto system Windows i udostępniono tę " -"wersję do pobrania. Jeśli wykryto niewłaściwy system operacyjny lub chcesz " -"pobrać inną wersję, to proszę kliknąć przycisk „Wszystkie systemy” poniżej." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Wszystkie systemy" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Dostępny za pomocą DNF dla systemu Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Więcej informacji" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Jak używać pliku ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Sprawdzanie poprawności" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bitowy obraz Live (%s GB)" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bitowy obraz Live (%s GB)" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Obrazy instalacji sieciowej:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bitowy obraz (%s MB)" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Wypróbuj Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic zapewnia niezmienny obraz systemu operacyjnego i aktualizacje przez " -"OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-bitowy obraz Atomic (%s GB)" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Więcej informacji" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Ogłoszenie wydania" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Przeczytaj pełne ogłoszenie wydania na blogu Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Informacje o wydaniu" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Informacje o zmianach od ostatniej wersji Fedory, a także minimalne i " -"zalecane wymagania sprzętowe." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Podręcznik instalacji" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Zalecamy jego przeczytanie przed instalacją. Odpowiada on na wiele często " -"zadawanych pytań." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Częste błędy" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Przydatne informacje w przypadku problemów podczas instalacji lub " -"uruchamiania Fedory." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Co znaczy „Live”?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer utworzy pełny system Fedora Workstation działający z " -"pendrive’a. Można używać obrazu Live do wypróbowania Fedory bez wprowadzania" -" zmian na dysku twardym." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"W każdej chwili z wersji „Live” można zainstalować Fedorę Workstation na " -"dysku twardym." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Obrazy Fedory" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Pobieranie Fedory Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Pobieranie Fedory %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Zaktualizuj za pomocą DNF w systemie Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Jest to oprogramowanie testowe, wspierane przez grupę roboczą Workstation. Prosimy kierować " -"pytania (w języku angielskim) na listę " -"dyskusyjną grupy lub kanał %(team_irc)s w sieci freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Uruchamianie testowych wersji Fedory Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Potrzebne są:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (do pobrania poniżej)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "Obraz Live ISO testowej wersji Fedory" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"OSTRZEŻENIE: spowoduje to usunięcie wszystkich danych na pendrivie. Upewnij " -"się, że skopiowano z niego wszystkie ważne pliki." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Pobierz aplikację Fedora Media Writer poniżej." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Pobierz wybrany obraz ISO." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Otwórz aplikację Fedora Media Writer. Może ona potrzebować hasła, aby mieć " -"odpowiednie uprawnienia." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Wybierz „Inny obraz…” z listy." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" -"Na stronie „Inny obraz” kliknij przycisk „Wybierz plik ISO obrazu Live”." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "W oknie wyboru pliku znajdź i wybierz pobrany obraz ISO." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Włóż pendrive do portu USB. Jeśli był on wcześniej używany do tworzenia " -"nośnika Live, to należy go przywrócić do ustawień fabrycznych. Aplikacja " -"zapyta, czy to zrobić." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Kliknij „Utwórz Live USB”, aby zapisać obraz. Poczekaj na ukończenie przed " -"wyjęciem nośnika i zamknięciem aplikacji." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Sprawdź poprawność obrazu 64-bitowego" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Sprawdź poprawność obrazu 32-bitowego" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Jak testować wydania testowe" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "Podręcznik testowania testowych wersji Fedory na wiki." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architektura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Główny serwer" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Uruchamia instancję AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Wybierz najbliższy region" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bitowy (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bitowy (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Uruchom" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Regulacje eksportowe" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Pełny tekst regulacji eksportowych" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Klikając i pobierając Fedorę, użytkownik wyraża zgodę na poniższe warunki." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Więcej informacji >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Informacje" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "O Fedorze" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorzy" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Kwestie prawne" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Pobierz Fedorę Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Pobierz Fedorę Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Pobierz Fedorę Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora dla ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternatywne wersje" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Wsparcie" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Pomoc" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Częste błędy" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora Developer Portal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Podręcznik instalacji" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Dołącz" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Dołącz do Fedory" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedory" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "SIG Fedory" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "System kont Fedory" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Społeczność Fedory" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora jest sponsorowana przez firmę Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Więcej informacji o związku między firmą Red Hat a Fedorą »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. i inni." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Komentarze i poprawki prosimy wysyłać do zespołu stron WWW (w języku angielskim)." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Zmień język" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Inne warianty systemu \"Logo" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Prosta. Potężna. Gotowa dla każdej chmury." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Najnowsza technologia. Stabilne fundamenty. Razem dla aplikacji i usług." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentacja i inne zasoby" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Przed instalacją Fedory należy potwierdzić, że komputer spełnia minimalne " -"wymagania. Informacje o wydaniu zawierają " -"wymagania minimalne i zalecane." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Dostępny jest także pełny podręcznik " -"instalacji. Zalecamy jego przeczytanie przed instalacją." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Inne sposoby uzyskania Fedory" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Można kupić nośnik instalacyjny Fedory u sprzedawcy " -"online lub sprzedawcy blisko miejsca zamieszkania." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Jeśli użytkownik nie może sobie pozwolić na zapłacenie za płytę " -"instalacyjną, może poprosić o nią w programie bezpłatnych " -"nośników Fedory." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informacje o kluczu GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Identyfikator klucza" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Odcisk" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "UID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Pobieranie:" diff --git a/getfedora.org/po/pt.po b/getfedora.org/po/pt.po deleted file mode 100644 index 826d83f..0000000 --- a/getfedora.org/po/pt.po +++ /dev/null @@ -1,2610 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Manuela Silva , 2015. #zanata -# Joao Almeida , 2016. #zanata -# Nuno Filipe Rodrigues , 2016. #zanata -# Ricardo Pinto , 2016. #zanata -# alchimista , 2016. #zanata -# pedro andrade , 2016. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2016-12-28 09:03-0500\n" -"Last-Translator: Joao Almeida \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" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Código de Conduta Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Código de Conduta Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Comporte-se como um membro da comunidade, siga o Código de Conduta." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Código de Conduta" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"A comunidade Fedora é composta por uma mistura de profissionais e " -"voluntários de toda a parte do mundo, que trabalham em todos os aspectos da " -"distribuição, desde programar até ao marketing. A Diversidade é um enorme " -"ponto forte, mas também pode causar algumas questões de comunicação e " -"insatisfação. Nesse sentido temos regras, às quais sugerimos que as pessoas " -"adiram aquando a adesão ao projecto e utilização dos seus recursos." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Não se trata de uma lista exaustiva de coisas que se devam ou não fazer. " -"Antes algo para aprofundar melhor o espirito pretendido. É uma espécie de " -"guia de entendimento para sermos melhores uns para os outros." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Seja atencioso. O seu trabalho será usado por outros e estará dependente do " -"trabalho de outros. Qualquer decisão que tome terá efeitos sobre " -"utilizadores e colegas, e terá de assumir as responsabilidades dessas mesmas" -" decisões." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Seja respeitador. Não se concorda com tudo nem com todos a todo o momento, " -"mas a discordância não é desculpa para faltar ao respeito. Todos " -"experienciamos alguma frustração aqui e ali, mas não podemos deixar que essa" -" frustração se transforme em ataques pessoais. É importante não esquecer que" -" uma comunidade onde as pessoas se sintam desconfortáveis ou ameaçadas não é" -" produtiva. Os membros da comunidade Fedora devem ser respeitadores quando " -"lidam com outros contribuidores assim como pessoas fora da comunidade e " -"utilizadores Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Quando discordamos, procuramos saber porquê. divergências que sociais quer " -"técnicas, acontecem a todo o momento, e no Projecto Fedora não é excepção. É" -" importante que se ultrapassem os desentendimentos as divergências de um " -"modo construtivo." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Lembre-se que somos todos diferentes. A força do Fedora vem dar diversidade " -"da comunidade e das pessoas de diferentes origens que a compõem. Pessoas " -"diferentes têm visões e perspectivas diferentes sobre certos assuntos. Não " -"entender o que leva alguém defender determinado ponto de vista não quer " -"dizer que estejam errados. Não se esqueça que errar é humano e que apontar o" -" dedo não leva ninguém a bom porto. Ao invés deve-se procurar ajudar na " -"resolução de problemas e aprender com os erros." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Escolha Liberdade. Escolha Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Menos complicação, mais inovação. Escolha um sabor de Fedora

de " -"acordo com as suas necessidades, e comece a trabalhar de imediato." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Terminal de Computador" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Transfira Agora" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation é um sistema operativo para portáteis e computadores de " -"secretária, polido, com uma gama completa de ferramentas para " -"desenvolvedores e criadores de todos os tipos." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Transfira agora!" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Servidor" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"O Fedora para Servidor é um sistema operativo poderoso e flexível que inclui" -" as melhores e as mais recentes tecnologias de centro de dados. Isto " -"coloca-o em controlo de todas as suas infraestruturas e serviços." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atómico" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"O Fedora é sempre livre para qualquer pessoa utilizar, modificar e " -"distribuir. Este é criado e utilizado por pessoas em todo o globo que " -"trabalham em conjunto como uma comunidade: o Projeto Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Quer mais opções Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"A comunidade Fedora também disponibiliza ARM images, diferentes live " -"Spins, e outras variações do Fedora direcionadas para requerimentos " -"específicos. Encontre-as em Fedora Spins ou no website Fedora Labs ." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Esteja em contacto e informado." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Quer envolver-se? Sabero que" -" se passa na comunidade? Leia as " -"últimas notícias e novidades na Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Leia a documentação." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Para saber informação mais detalhada sobre a versão actual consulte as Notas" -" de Lançamento. Para saber mais como usar o Fedora e quais os requerimentos " -"mínimos, consulte a documentação " -"oficial." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Obtenha ajuda" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Precisa de ajuda com o Fedora? Veja aqui Ask Fedora, onde" -" pode consultar aquivos de questões de outros utilizadores ou colocar as " -"suas próprias questões." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora - Patrocinadores" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"O Projeto Fedora está orgulhoso de ter as seguintes organizações como " -"patrocinadores..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Patrocinador Principal" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. é o patrocinador principal para o Projeto " -"Fedora. Red Hat proporciona ao Projeto Fedora uma ampla variedade de " -"recursos, incluindo o suporte de funcionário a tempo inteiro, " -"infraestruturas de hardware e largura de banda, eventos de dotação de " -"fundos, e acessoria legal." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"O Projeto Fedora também está grato aos seguintes patrocinadores, por " -"proporcionarem um suporte substancial:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Interessado em patrocinar algo para o Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contacte admin@fedoraproject.org ou utilize " -"#fedora-admin em irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifique a sua Imagem Transferida" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "\"CHECKSUM\" e Instruções de Verificação" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Como é que eu verifico a minha imagem?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Assim que transferir uma imagem, verifique-a para segurança e integridade. " -"Para verificar a sua imagem, comece por transferir o ficheiro de " -"\"CHECKSUM\" apropriado para a mesma diretoria da imagem transferida." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Para imagens de 64 bits" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Para imagens de 32 bits" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "A seguir, importe a(s) chave(s) GPG do Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Pode verificar aqui os detalhes da(s) chave(s) " -"GPG." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Agora, verifique se o ficheiro \"CHECKSUM\" é válido:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"O ficheiro \"CHECKSUM\" deve ter uma assinatura válida a partir de uma das " -"seguintes chaves:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Arquitecturas secundárias Fedora 26 (AArch64, PPC64, PPC64le, s390 and " -"s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Finalmente, e agora que o ficheiro de \"CHECKSUM\" foi verificado, verifique" -" se o \"Checksum\" da imagem corresponde:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Se o resultado confirmar que o ficheiro é válido, então está pronto para ser" -" utilizado!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Como é que eu verifico a minha imagem transferida noutro sistema operativo?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -#, fuzzy -msgid "Chief Architect, Navops by Univa" -msgstr "Arquitecto Chefe, Navops por Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Anfitrião Atomic" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic para Linha de Comandos" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Pronto para testar o Fedora Atómico?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Obrigado por transferir o Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"A sua transferência deverá começar em poucos segundos. Se não, clique na " -"hiperligação abaixo:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifique a sua Transferência!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Assim que transferir uma imagem, verifique-a para segurança e integridade. " -"Para verificar a sua imagem, comece por transferir o ficheiro de " -"\"CHECKSUM\" apropriado para a mesma diretoria da imagem transferida e siga " -"estas instruções." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Transferir o Fedora Atómico" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Fechar" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Região" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "ID AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Executar" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Imagem de VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Transferir" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Imagem libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Imagem qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Imagem Qcow2 de 64 bits - %sMB" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Imagem Raw" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Esta versão de Fedora %(rel)s Cloud Atomic Host está comprimida numa Imagem " -"Raw. Se não tem a certeza o que usar, experimente isto." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Imagem Raw Comprimida-xz de 64 bits - %sMB" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Outras Transferências" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Teste um pré lançamento" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Estamos a trabalhar no nosso próximo lançamento." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Ajude-nos a terminar o F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Como testar pré-lançamentos" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Recursos" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verificar" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifique a sua Imagem" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projeto Fedora - Página Não Encontrada" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Página Não Encontrada" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Nós pedimos desculpa, mas não foi possível encontrar o ficheiro ou a página " -"solicitada." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ideias de Resolução de Problemas" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Reverifique o URL que inseriu manualmente. Copiou-o corretamente?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Má hiperligação? Contacte o responsável da Web e explique" -" qual a hiperligação que o trouxe até aqui." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"A página ou o ficheiro poderão ter sido movidos. Verifique o sítio principal ou procura na nossa wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Esta página lista as chaves públicas GPG para a assinatura dos pacotes no " -"Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Saiba como o Fedora o protege." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"O Fedora utiliza a assinatura do pacote GPG para assegurar que a integridade" -" do pacote não foi comprometida." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Leia as \"FAQs\" para saber mais »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Chaves Utilizadas Atualmente" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Principal" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secundário" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Está à procura de chaves obsoletas?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Chaves de Assinatura de Pacotes Obsoletos" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Esta página mostra as chaves públicas GPG que já não são utilizadas para " -"assinatura de pacotes no Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Chaves Não Utilizadas e Obsoletas" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Chave GPG do Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testes" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora - Testar" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testes" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testar" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora - Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legado" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ - Assinatura de Pacote" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" -"Como é que o Projecto Fedora utiliza as chaves GPG para assinar os pacotes?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Cada pacote RPM estável, publicado pelo Projecto Fedora, é assinado com uma " -"assinatura GPG. Por omissão o dnf e a ferramenta gráfica de actualizações " -"verificam esta assinatura e recusam instalar qualquer pacote que não esteja " -"assinado ou que tenha uma assinatura inválida. Deve sempre verificar a " -"assinatura de um pacote antes de o instalar. Estas assinaturas garantem que " -"os pacotes que instala são os produzidos pelo Projecto Fedora e que não " -"foram alterados (acidentalmente ou por maldade) por qualquer mirror ou sítio" -" web que esteja a disponibilizar os pacotes." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Pacotes que podem ser transferidos do sistema koji não contêm assinaturas, " -"por isso deve utilizá-los com cuidado. De igual modo, as versões em " -"desenvolvimento do repositório Rawhide não estão necessariamente assinados." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importar chaves" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"As chaves são incluídas no pacote fedora-release, pode " -"encontrar estas chaves no directório /etc/pki/rpm-gpg. Por " -"favor, note que nem todas as chaves neste directório são utilizadas pelo " -"projecto Fedora -- algumas são utilizadas para assinar pacotes Red Hat " -"Enterprise Linux ou já não são utilizadas. Se utiliza pacotes Red Hat " -"Enterprise Linux, visite https://www.redhat.com/security/team/key. As chaves " -"utilizadas pelo Fedora estão activas na configuração do repositório yum, por" -" isso, normalmente, não é necessário importar manualmente estas chaves para " -"a base de dados rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Além do pacote fedora-release e desta página web, pode transferir as chaves " -"do Fedora a partir de um servidor público de chaves, tal como keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Para alguns repositórios, tais como os repositórios com pacotes de teste e " -"estáveis na configuração predefinida, o dnf é capaz de " -"encontrar uma chave adequada para o repositório e pede a confirmação ao " -"utilizador antes de importar a chave, se a chave ainda não tiver sido " -"importada para a base de dados rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Pode importar sempre e manualmente uma chave para a base de dados RPM, " -"utilizando o seguinte comando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Consulte o manual de rpm para mais informação." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Se pretender verificar se as chaves instaladas no seu sistema correspondem " -"às chaves listadas aqui, pode utilizar o GnuPG para verificar se as " -"assinaturas digitais coincidem. Por exemplo:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora - Servidor" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Administração Fácil" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Serviços da Base de Dados" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Solução Completa para Domínio Empresarial" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Pronto para testar o Fedora - Servidor?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Transfira o Fedora - Servidor" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Transfira o Fedora - Servidor, Versão %(rel)s" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "imagem de instalação %sGB de 64 bits" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Imagem Netinstall " - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Image 64-bit %sMB " - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Transfira as imagens Alpha do F%(rel)s " - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Transfira as imagens Beta do F%(rel)s " - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Obter mais Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Tecnologia ARM ®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Como transformar a imagem Live num disco de arranque?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Como é que eu arranco a partir do disco?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Transfira o Fedora - Servidor, Versão %(rel)s %(state)s" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Imagem de Instalação %sGB de 64 bits" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Quando é que a versão %s do Fedora vai ser lanaçada?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Esta é uma estação de trabalho Linux que estava à espera." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Interface de utilizador apelativa" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Caixa de ferramentas de código aberto completa" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "Caixas do GNOME e outras ferramentas virtuais" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Suporte integrado para Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Pronto para testar o Fedora - Terminal de Computador?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Transfira o Fedora - Terminal de Computador" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Transfira o Fedora - Terminal de Computador, Versão %(rel)s" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plataformas Suportadas" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer suporta as seguintes plataformas:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Veja as descargas para todas as plataformas" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Disponível via DNF para Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Mais detalhes" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Como uilizar esta ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifique esta imagem" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Imagem Live %sGB de 64 bits" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Imagem Live %sGB de 64 bits" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Imagens Netinstall:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "imagem 32-bit %sMB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Bugs Comuns" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora \"Spins\"" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Laboratório Fedora" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Transfira o Fedora - Terminal de Computador, Versão %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Transfira o Fedora - Terminal de Computador, Versão %(rel)s %(state)s" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Descarga disponível abaixo)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"AVISO IMPORTANTE: Este processo destrói todo conteúdo da sua memória USB. " -"Tenha a certeza que faz uma cópia de segurança dos ficheiros importantes da " -"sua memória USB antes de fazer este procedimento." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Faça Download do editor Fedora Media abaixo." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Descarregue a ISO pretendida" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Abra o Editor Fedora Media. Necessitará de fornecer a password para dar à " -"app as devidas autorizações." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -#, fuzzy -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Selecione \"Criar Live USB\" para escrever a imagem. Espere até que o " -"processo Termine antes de remover a pen e fechar a aplicação." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Como testar pré-lançamentos" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "Wiki Fedora sobre cestar pré-lançamentos do Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arquitetura" - -#: data/templates/cloud-tab.html:15 -#, fuzzy -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Executar instância AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Selecione a região mais próxima" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 bits (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 bits (i386)" - -#: data/templates/cloud-tab.html:54 -#, fuzzy -msgid "Launch it!" -msgstr "Execute-o!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Regulamentos de Exportação" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Leia os regulamentos de exportação completos" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Ao clicar em, e transferir o Fedora, está a concordar com os seguintes " -"termos e condições." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Ler mais >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Sobre" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Sobre o Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Publicações Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Legal" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Obter Fedora - Terminal de Computador" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Obter Fedora - Servidor" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora - ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Suporte" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obter Ajuda" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Pergunte ao Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Erros Comuns" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portal do Desenvolvedor Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guia de Instalação" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Junte-se" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Junte-se ao Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora - SIGS (Grupos de Interesse Especial do Fedora)" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistema de Contas do Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunidade do Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "O Fedora é patrocinado pela Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Saber mais sobre a a relação entre Red Hat e Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. e outros." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Alterar Idioma" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "CONFIRMAR" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Robusto. Poderoso. pronto para Todas as Nuvens." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"A última tecnologia. Uma fundação estável. Ambas para as suas aplicações e " -"serviços." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentação e outros recursos" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Outras formas de obter o Fedora" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Pode comprar discos de instalação do fedora através de vendedores online ou através de revendedores locais" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Não tem disponibilidade para suportar a compra de um disco de instalação? " -"Solicite um disco de instalação no Fedora Free Media " -"Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informação da Chave GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID da Chave" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Assinatura Digital" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Obter de:" diff --git a/getfedora.org/po/pt_BR.po b/getfedora.org/po/pt_BR.po deleted file mode 100644 index 7c8321e..0000000 --- a/getfedora.org/po/pt_BR.po +++ /dev/null @@ -1,2852 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# jonataszv , 2014 -# Marco Aurélio Krause , 2015. #zanata -# Ana Mativi , 2016. #zanata -# Frederico Henrique Gonçalves Lima , 2016. #zanata -# Marco Aurélio Krause , 2016. #zanata -# Dário Estevão Morais de Souza , 2017. #zanata -# Frederico Henrique Gonçalves Lima , 2017. #zanata -# Mateus de Melo Santos , 2017. #zanata -# Wellerson Jeremias Colombari , 2017. #zanata -# Renan Marcos Ferreira , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-19 08:48-0400\n" -"Last-Translator: Renan Marcos Ferreira \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" -"Language: pt-BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Código de Conduta do Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Código de Conduta do Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Comporte-se como um membro da comunidade, siga o Código de Conduta." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Código de Conduta" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"A comunidade Fedora é feita de uma mistura de profissionais e voluntários de" -" todas as partes do mundo, trabalhando em cada aspecto da distribuição, " -"desde o desenvolvimento até o marketing. A diversidade é uma das nossas " -"grandes vantagens, mas isso também pode levar a problemas de comunicação e " -"insatisfação. Por isso, temos algumas regras básicas que pedimos para as " -"pessoas aceitarem quando estiverem utilizando os recursos do projeto." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Esta não é uma lista exaustiva de coisas que não pode fazer. Ao invés disso," -" use-a de acordo com o espírito no qual ela foi feita - um guia para " -"facilitar a excelência uns com os outros." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Seja razoável. Seu trabalho será usado por outras pessoas e você por sua vez" -" dependerá do trabalho de outros. Qualquer decisão que tomar afetará " -"usuários e colegas e você deve levar em conta essas consequências ao tomá-" -"la." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Tenha respeito. Nem todos nós vamos concordar com tudo, mas discordância não" -" é desculpa para mau comportamento e maus modos. Podemos sentir alguma " -"frustração de vez em quando, mas não podemos permitir que a frustração se " -"transformem em ataques pessoais. É importante lembrar que uma comunidade " -"onde as pessoas se sentem desconfortáveis ou ameaçados não é produtiva. Os " -"membros da comunidade Fedora devem ser respeitosos quando estiverem lidando " -"com outros colaboradores, bem como com pessoas de fora da comunidade Fedora " -"e com usuários do Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Quando discordamos, nós tentamos entender o por quê. Desentendimentos, tanto" -" sociais como técnicos, acontecem o tempo todo e o Fedora não é uma exceção." -" É importante resolvermos as desentendimentos e visões diferentes " -"construtivamente." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Lembre-se que nós somos diferentes. As vantagens do Fedora vem da sua " -"variada comunidade, pessoas com diferentes histórias. Pessoas diferentes tem" -" perspectivas diferentes sobre problemas. Não ser capaz de entender porque " -"alguém tem um certo ponto de vista, não significa que ela esteja errada. Não" -" se esqueça de que errar é humano e culpar uns aos outros não nos leva a " -"lugar nenhum, ao invés disso procure oferecer ajuda para resolver os " -"problemas e aprender com eles." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Obtenha o Fedora: Baixe seu S.O. baseado em Linux para desktops de " -"desenvolvimento, executando containers e mais." - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Escolha Liberdade. Escolha Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Menos configuração, mais inovação. Escolha um sabor do Fedora

" -"adequado as suas necessidades e comece a trabalhar de imediato." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s lançado! Teste-o na seção de " -"Downloads." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s lançado! Obtenha-o agora." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Baixar Agora" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"O Fedora Workstation é um sistema operacional polido e fácil de usar para " -"computadores e portáteis, com um conjunto completo de ferramentas para " -"desenvolvedores e usuários de todos os tipos." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Baixar agora" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"O Fedora Server é um sistema operacional poderoso e flexível, que inclui as " -"melhores e mais recentes tecnologias de datacenter. Ele coloca você no " -"controle de toda a sua infra-estrutura e serviços." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"O Fedora Atomic fornece a melhor plataforma para sua pilha de aplicativos " -"Linux-Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"O Fedora sempre será livre para qualquer um usar, modificar e distribuir. " -"Ele é construído e usado por pessoas de todo o mundo que trabalham unidas " -"como uma comunidade: o Projeto Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Quer mais opções do Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"A comunidade Fedora também disponibiliza imagens ARM, Spins live " -"alternativos e outras variações do Fedora adaptados à necessidades " -"específicas. Encontre-as no website Fedora Spins ou Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Fique conectado & informado." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Deseja participar? Descobrir" -" o que está acontecendo na comunidade? Leia sobre " -"as últimas notícias e coisas legais na Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Leia a documentação." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Confira as notas de lançamento para obter informações detalhadas sobre a " -"versão atual. Para saber mais sobre como usar o Fedora e detalhes, como " -"requisitos de sistema, consulte a documentação " -"oficial." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Obter ajuda." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Precisa de ajuda com o Fedora? Confira o Ask Fedora, onde" -" você pode ler perguntas de outros usuários ou fazer as suas próprias " -"perguntas." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Patrocinadores do Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"O Projeto Fedora tem o orgulho de ter as seguintes organizações como " -"patrocinadoras..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Patrocinador Principal" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. é o principal patrocinador do Projeto " -"Fedora. A Red Hat provê uma variedade de recursos, incluindo suporte de " -"empregados em tempo integral, hardware de infra-estrutura e de largura de " -"banda, financiamento em eventos e assessoria jurídica." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"O Projeto Fedora também agradece aos seguintes patrocinadores por " -"proporcionarem um suporte substancial:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Interessado em patrocinar algo para o Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Contacte admin@fedoraproject.org ou #fedora-admin no irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifique a imagem baixada" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM e Instruções de Verificação" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Como faço para verificar a minha imagem?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Uma vez que tenha baixado uma imagem, verifique-a quanto a segurança e " -"integridade. Para verificar sua imagem, comece por baixar o arquivo CHECKSUM" -" apropriado para o mesmo diretório da imagem:" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Para imagens de 64-bit" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Para imagens de 32-bit" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Para Atomic Workstation" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "Para imagens aarch64" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "Para aarch64 raw" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Para iso do Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Para Imagens do Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Para container" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Em seguida, importe a(s) chave(s) GPG do Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Você pode verificar os detalhes da(s) chave(s) GPG aqui." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Agora verifique se seu arquivo CHECKSUM é válido:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"O arquivo CHECKSUM deve ter uma boa assinatura de uma das chaves abaixo:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Arquiteturas secundárias do Fedora 26 (AArch64, PPC64, PPC64le, s390 e " -"s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"E por último, agora que o arquivo CHECKSUM foi verificado, verifique se o " -"checksum da imagem coincide:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Se a saída indica que o arquivo é válido, então ele está pronto para uso!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"Como faço para verificar a minha imagem baixada em outro sistema " -"operacional?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Leia essas instruções para verificar sua imagem." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Obtenha o Fedora Atomic: a melhor plataforma para suas pilhas de aplicações " -"containerizadas." - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Implante e dimensione seus aplicativos em contêineres com infra-estrutura " -"imutável." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Download ou Inicie em uma Nuvem Pública" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"\"Optamos por usar o Fedora Atomic como a base para a nossa solução de " -"provisionamento de pacotes Navops Launch - Kubernetes, porque nossos " -"clientes confiam e já operam os sistemas operacionais Red Hat. Nós amamos o " -"aspecto imutável do Fedora Atomic que é perfeito para ambientes em " -"contêineres.\"" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Arquiteto Chefe, Navops por Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host do Project Atomic é uma plataforma leve e imutável, projetada " -"com o único propósito de executar aplicativos em contêineres." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"A versão do Fedora do Atomic Host usa os mesmos repositórios de pacotes do " -"Fedora Server e fornece as versões mais recentes do Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Atualizações do OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Atualize automaticamente o seu sistema a partir do mais recente OStree do " -"upstream. Torne seus servidores idênticos, e restaure facilmente caso haja " -"um problema na atualização." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Gerencie contêineres Docker, contêineres de sistema, Atomic Apps e muito " -"mais usando uma ferramenta conveniente de linha de comando." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Otimizado para Kubernetes e OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Construindo um cluster Kubernetes ou Origem para executar seus aplicativos " -"em contêineres? Execute-o no Fedora Atomic, que fornece a plataforma que " -"precisa em um sistema operacional menor e mais enxuto." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Pronto para experimentar o Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Baixar o Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Obrigado por baixar o Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"O download deve começar em poucos segundos. Se não, clique no link abaixo:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifique o seu download!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Uma vez que tenha baixado uma imagem, verifique-a quanto a segurança e " -"integridade. Para verificar sua imagem, comece por baixar o arquivo CHECKSUM" -" apropriado para o mesmo diretório da imagem e siga estas instruções." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Verifique!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Baixar o Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Baixar o Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "O Atomic Host é construído a cada 2 semanas ou mais." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"A compilação das últimas duas semanas não alcançaram os critérios de testes." -" As imagens disponíveis são de mais de %(atomic_age)s dias atrás. Confira o " -"blog do Projeto Atomic para atualizações e informações sobre bugs " -"bloqueadores Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Estas são as imagens Fedora Atomic Host mais recentes, produzidas " -"%(atomic_age)s dias atrás." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Imagens Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"O Fedora Atomic Host é um sistema operacional base de vanguarda seguindo o " -"modelo Project Atomic. Ele é projetado em torno de Kubernetes e contêineres." -" As imagens aqui publicadas mostram esse trabalho. Observe que as imagens " -"passaram vários níveis de testes automatizados." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Por favor, teste antes de utilizar novas versões em " -"produção. Se você descobrir algum problema, as ferramentas Atomic " -"Host facilitam a restauração para uma versão anterior — e se isso acontecer," -" por favor também nos ajude registrando bugs ou enviando correções." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Imagens Fedora Atomic Host são atualizadas aproximadamente a cada " -"duas semanas, ao invés da cadência principal de seis meses do " -"Fedora. Como o desenvolvimento está em movimento acelerado, apenas o " -"lançamento principal mais recente do Fedora é suportado." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Tenha em mente que diferentes mídias do Fedora Atomic Host estão " -"sujeitas a níveis diferentes de testes automatizados. Você pode " -"aprender mais sobre o projeto Atomic em projectatomic.io." -" Clique aqui para ver o status atual dos testes." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Imagens Atomic Host Cloud para o Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"O link abaixo fornecerá uma listagem de Imagens AMI do Atomic Host Hardware " -"Virtual Machine (HVM) disponíveis por região com botões para lançá-las em " -"sua conta Amazon Web Services. ID do AMI para utilização com o AWS Console " -"ou ferramentas de linha de comando também são fornecidas." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Formato GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"Imagens AMI no formato GP2 utilizam o rápido armazenamento SSD; utilize " -"estas imagens AMI para velocidade, entretanto note que os custos de " -"armazenamento serão maiores que o padrão." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "Imagem AMIs HVM GP2" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Fechar" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Imagem AMI do Fedora %(rel)s GP2 Atomic Host HVM" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Região" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Lançador" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Formato Padrão)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Imagens AMI no formato padrão são mais adequadas se você tem acessado os " -"dados raramente e deseja manter os custos de armazenamento reduzidos." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Imagem AMIs HVM Padrão" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Imagens AMI HVM do Fedora %(rel)s Standard Atomic Host Cloud" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Formato Padrão" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Imagens Atomic Host para Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Boxes do Vagrant para o Fedora Atomic Host estão disponíveis para os " -"fornecedores do VirtualBox e Libvirt. Você pode abrir uma box do vagrant no " -"Fedora Atomic Host baixando as imagens do Fedora ou utilizando as " -"ferramentas do vagrant para baixar as imagens do HashiCorp's " -"Vagrant Cloud." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Visualizar os Downloads do Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Downloads de Imagem do Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Estas imagens são imagens Vagrant Boxes para implantação utilizando o Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Imagem VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Se você estiver usando o Vagrant no Mac OS X ou Windows, esta é " -"provavelmente a imagem que você vai querer usar." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Download" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Imagem Vagrant 64-bit %sMB VirtualBox Base" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Imagem libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Se você estiver usando Vagrant no Fedora, esta é a imagem que você vai " -"querer usar." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Imagem Vagrant 64-bit %sMB libvirt/KVM Base" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Visualizar os Downloads utilizando as ferramentas do Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Downloads do Vagrant utilizando as ferramentas do Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Você pode utilizar o seguinte comando para obter imagens Vagrant Box de HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Se você já executou o Atomic Host do Fedora %(rel)s no Vagrant anteriormente" -" em sua máquina, então você poderá obter a versão mais recente executando:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Para mais informações sobre executar o Vagrant no Fedora Workstation, veja " -"nossa página wiki." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Imagens do Atomic Host para Ambientes na Nuvem" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Imagem qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Esta é o Fedora %(rel)s Cloud Atomic Host em uma imagem formatada Qcow2 para" -" uso com OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Imagem 64-bit %sMB Qcow2" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Imagem Raw" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Este é o Fedora %(rel)s Cloud Atomic Host em uma imagem em formato raw " -"comprimido. Se está incerto sobre qual usar, tente este." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Imagem 64-bit %sMB Raw Comprimida em xz " - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Outros Downloads" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Imagem ISO do Atomic Host (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Imagem de container (%sMB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Experimente um pré-lançamento" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Estamos trabalhando em nosso próximo lançamento." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Nos ajude a ter o F%(rel)s pronto!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Baixar imagens F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Como testar os pré-lançamentos" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Recursos" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Projeto " -"Atomic: Iniciando-se" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" -"Documentação sobre como começar a usar o Project Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Lista de Discussão" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Inscreva-se na lista de discussão dos desenvolvedores em atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Projeto Atomic: Bate-papo no IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Junte-se ao canal do Projeto Atomic #atomic no " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verificar" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifique a imagem baixada" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Baixar o Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Estas são as imagens Fedora Atomic Host mais recentes, produzidas em " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Este é um software de pré-lançamento e é suportador pelo Grupo de Trabalho do Atomic. Por favor, dirija " -"perguntas à lista de e-email ou %(team_irc)s " -"no freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Todas as questões ou bugs devem ser relatados através do Bugzilla da Red Hat. O Projeto Fedora não oferece garantias " -"quanto à sua adequação ou qualidade." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Imagem AMI do Fedora %(rel)s %(state)s GP2 Atomic Host HVM" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" -"Imagens AMI HVM do Fedora %(rel)s %(state)s Standard Atomic Host Cloud" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Boxes do Vagrant para o Fedora Atomic Host estão disponíveis para os " -"fornecedores VirtualBox e Libvirt. Você pode abrir uma box do vagrant no " -"Fedora Atomic Host descarregando as imagens do Fedora ou utilizando as " -"ferramentas do vagrant para descarregar as imagens do Atlas " -"da HashiCorp." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Esta é o Fedora %(rel)s %(state)s Cloud Atomic Host em uma imagem no formato" -" Qcow2 para uso com o OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Este é o Fedora %(rel)s %(state)s Cloud Atomic Host em uma imagem em formato" -" raw comprimido. Se está incerto sobre qual usar, tente este." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projeto Fedora - Página não encontrada" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Página Não Encontrada" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Pedimos desculpas, mas o arquivo ou página solicitada não podê ser " -"encontrada." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ideias para solução de problemas" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Verifique novamente a URL caso você tenha digitado manualmente. Você a " -"copiou corretamente?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Link quebrado? Contate o webmaster e explique qual link " -"lhe trouxe aqui. " - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"A página ou o arquivo pode ter sido movido. Verifique o site principal ou procure na nossa wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Chaves de Assinamento de Pacotes" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Está página lista as chaves públicas GPG utilizadas para assinamento de " -"pacotes no Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Saiba como o Fedora protege você." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora faz uso de assinamento de pacotes GPG para garantir que a integridade" -" dos pacotes não foi comprometida." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Leia o FAQ para saber mais »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Chaves utilizadas atualmente" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primário" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Secundário" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Procurando por chaves obsoletas?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Chaves Obsoletas de Assinamento de Pacotes" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Está página lista as chaves públicas GPG não mais usadas para assinamento de" -" pacotes no Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Chaves obsoletas e não utilizadas" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Chave GPG Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Os pacotes na mídia de instalação são assinados com esta chave. Os " -"repositórios dgf relevantes são fedora, fedora-" -"updates para Fedora 7-9, e core e core-" -"updates para Fedora Core (Versão 6 e anteriores). Consulte http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html para saber porque esta chave é " -"obsoleta." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Se você participa dos testes de pacotes, esta é a chave que você irá " -"utilizar para verificar os pacotes de teste. Esta chave assina os pacotes " -"que estão no repositório fedora-testing. Consulte http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html para saber porque esta chave é " -"obsoleta." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Se você está utilizando o Fedora extras com Fedora Core 6, use este pacote a" -" partir do repositório extras. Esta chave não será mais " -"utilizada após o Fedora Core 6 alcançar o fim do ciclo de vida (7 de " -"Dezembro de 2007). Esta chave não está incluída no pacote fedora-" -"release no Fedora 7 e versões posteriores." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legado" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Esta chave foi utilizada por pacotes que foram lançados pelo projeto Fedora " -"Legacy para atualizar versões que alcançaram o fim do ciclo de vida oficial." -" O projeto Fedora Legacy não existe mais, então esta chave não será mais " -"utilizada para assinar pacotes. Esta chave não está incluída no pacote " -"fedora-release no Fedora 7 e versões posteriores." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Perguntas frequentes sobre a assinatura de pacotes" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Aprenda como o Fedora faz uso de GPG para assinar pacotes e garantir sua " -"segurança." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Como o Projeto Fedora usa chaves GPG para assinar pacotes?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Cada pacote RPM estável que é publicado pelo Projeto Fedora é assinado com " -"uma assinatura GPG. Por padrão, o dnf e as ferramentas gráficas de " -"atualização irão verificar essas assinaturas e rejeitar quaisquer pacotes " -"que não sejam assinados ou tenham assinaturas inválidas. Você deve sempre " -"verificar a assinatura de um pacote antes de instala-lo. Essas assinaturas " -"garantem que os pacotes que você instala são os que foram produzidos pelo " -"Projeto Fedora e não foram alterados (acidentalmente ou maliciosamente) por " -"qualquer espelho ou website que esteja fornecendo os pacotes." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Pacotes que podem ser baixados a partir do sistema de construção Koji não " -"contém assinaturas, então você deve utiliza-los com cuidado. De maneira " -"semelhante, pacotes muito novos no repositório Rawhide não são " -"necessariamente assinados." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importando chaves" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"As chaves estão incluídas no pacote fedora-release, você " -"pode encontra-las no diretório /etc/pki/rpm-gpg. Por favor " -"note que nem todas as chaves neste diretório são usadas pelo Projeto Fedora " -"-- algumas são usadas para assinar pacotes do Red Hat Enterprise Linux ou " -"não são mais utilizadas. Se você usa pacotes do Red Hat Enterprise Linux, " -"consulte https://www.redhat.com/security/team/key. As " -"chaves usadas pelo Fedora são habilitadas na configuração do repositório do " -"dnf, então geralmente você não precisa importa-las manualmente para o banco " -"de dados rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Em adição ao pacote fedora-release e esta página, você pode baixar as chaves" -" Fedora a partir de um servidor de chaves públicas, como keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Para alguns repositórios, como os repositórios com pacotes estáveis e " -"pacotes de teste na configuração padrão, o dnf é capaz de " -"encontrar uma chave apropriada para o repositório e pedir a confirmação do " -"usuário antes de importar a chave caso ela ainda não tenha sido importada " -"para o banco de dados rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Você pode importar uma chave para o banco de dados do RPM manualmente " -"utilizando o seguinte comando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Consulte o manual do rpm para maiores informações." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Se você quer verificar se as chaves instaladas em seu sistema correspondem " -"às chaves listadas aqui, você pode utilizar o GnuPG para verificar se a " -"impressão digital da chave corresponde. Por exemplo:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Obtenha o Fedora Server: a última tecnologia para suas aplicações e " -"serviços." - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Rode suas aplicações num servidor Linux com as últimas versões das " -"tecnologias de código aberto." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Agora com o conteúdo em diferentes versões em ciclos de vida independentes —" -" então seu servidor pode se expandir lentamente ou rapidamente." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server é um sistema operacional de curto ciclo de vida, mantido pela " -"comunidade que permite administradores de sistema experientes em qualquer " -"S.O fazerem uso das mais atuais tecnologias disponíveis na comunidade open " -"source." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Apresentando a modularização" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Fácil administração" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Gerencie seu sistema de forma simples com a poderosa e moderna interface " -"Cockpit. Visualize e monitore o desempenho e status de seu sistema, e " -"implante e gerencie serviços baseados em contêineres." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Serviços de Bando de Dados" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server traz junto um banco de dados de nível empresarial, provido " -"pelo projeto open-source PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Solução Completa de Domínio Empresarial" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Pronto para experimentar o Fedora Sever?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Baixar o Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Baixar o Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Imagem de instalação 64-bit %sGB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"A imagem de instalação Fedora Server permite que você crie mídia para seu " -"computador que inicializa no instalador para instalar o Fedora Server " -"diretamente em seu disco rígido." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Para usar esta imagem, você precisa de uma unidade que possa criar ou " -"“queimar” DVDs, ou uma unidade flash USB com pelo o tamanho da imagem." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Imagem Netinstall:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Imagem 64-bit %sMB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Download de imagens F%(rel)s Alfa" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Download de imagens F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Obtenha mais Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Tecnologia ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Como transformar a imagem Live em uma mídia inicializável?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Após descarregar a imagem, você criará média inicialização a partir dela. Ou" -" queime a imagem em um disco de DVD em branco, ou escreva a imagem em uma unidade flash USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Como inicializar a partir da mídia?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Consulte a documentação do seu computador para o procedimento de inicializar" -" através da mídia ao invés do disco rígido interno. O processo pode mudar " -"baseado no fabricante ou modelo do seu computador. Você achar estas dicas comuns uteis." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Baixar o Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Imagem de Instalação 64-bit %sGB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Este é um software de pré-lançamento e é mantido pelo Workstation Working Group. Por favor, direcione " -"perguntas para sua lista de discussão ou " -"%(team_irc)s na freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Leia as Notas de lançamento para maiores " -"informações sobre mudanças e novos recursos, e a página de Bugs comuns para informações sobre os bugs " -"mais comumente encontrados e saber como evitá-los." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Quando o Fedora %s será lançado?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Leia todos os marcações chave da agenda de lançamentos..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Uma vez que tenha baixado uma imagem, verifique-a quanto a segurança e " -"integridade. Para verificar sua imagem, comece por baixar o arquivo CHECKSUM" -" apropriado para o mesmo diretório da imagem e siga estas instruções." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Obtenha o Fedora Workstation: o melhor S.O. Destktop para desenvolvedores de" -" softwares" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "A estação Linux que você estava esperando." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"O Fedora Workstation é confiável, amigável e poderoso sistema operacional " -"para seu computador laptop ou desktop. Ele auxilia uma ampla gama de " -"desenvolvedores, de amadores e estudantes a profissionais em ambientes " -"corporativos." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“A abundância de ferramentas disponibilizadas por
Fedora me permitem " -"obter o trabalho concluído.
Apenas funciona.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "engenheira de desempenho da JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Elegante interface de usuário" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Concentre-se em seu código no ambiente de desktop GNOME 3. GNOME é " -"construído com feedback dos desenvolvedores e minimiza distrações, para que " -"você possa concentrar-se no que é importante." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Caixa de ferramentas open source completa" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Pule o esforço de tentar encontrar ou construir as ferramentas que " -"necessita. Com o conjunto completo open-source de linguagens, ferramentas e " -"utilitários Fedora você está a apenas um clique ou comando de distância. Há " -"até mesmo hospedagem de projetos e repositórios como COPR para fazer seu " -"código e binários disponíveis rapidamente para a comunidade." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes & outras ferramentas de virtualização" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Obtenha máquinas virtuais prontas e executando rapidamente para testar seu " -"código em várias plataformas utilizando GNOME Boxes. Ou adentre em " -"ferramentas poderosas e programáveis para ainda mais controle." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Suporte Docker embutido" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Containerize seus próprios aplicativos, ou implante aplicativos pronto-para-" -"uso no Fedora, usando a mais recente tecnologia, como Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Pronto para experimentar o Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Baixar o Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Baixar o Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer para o Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "ISO 64-bit de %s GB para o Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer para o Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Descarregue o Fedora Media Writer para o seu sistema operacional." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Necessita de instruções? Ou uma versão diferente?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Executando o Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Para executar o Fedora Workstation, você precisará:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (download acima)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Uma unidade flash USB com pelo menos %s GB de espaço disponível" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Opcionalmente, você pode instalar o Fedora Workstation em um notebook ou " -"desktop que possua pelo menos 1 GHz de processador, 1 GB de RAM, e 10 GB de " -"espaço disponível. Para isso, execute a versão live do Fedora Workstation a " -"partir do seu dispositivo flash USB no computador que você quer instalá-lo, " -"execute o aplicativo Fedora Media Writer, e siga as orientações na tela para" -" completar a instalação." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plataformas Suportadas" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "O Fedora Media Writer suporta as seguintes plataformas:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Nós auto detectamos que você está executando o Mac OS X e " -"disponibilizamos essa versão para baixar. Se detectamos incorretamente o seu" -" sistema operacional ou você deseja baixar uma versão diferente, por favor " -"clique no botão \"Visualizar downloads de todas as plataformas\" abaixo." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Nós auto detectamos que você está executando o Linux e " -"disponibilizamos essa versão para baixar. Se detectamos incorretamente o seu" -" sistema operacional ou você deseja baixar uma versão diferente, por favor " -"clique no botão \"Visualizar downloads de todas as plataformas\" abaixo." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Nós auto detectamos que você está executando o Windows e " -"disponibilizamos essa versão para baixar. Se detectamos incorretamente o seu" -" sistema operacional ou você deseja baixar uma versão diferente, por favor " -"clique no botão \"Visualizar downloads de todas as plataformas\" abaixo." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Visualizar downloads de todas as plataformas" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Disponível via DNF para o Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Mais detalhes" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Como utilizar essa ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifique essa imagem" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Imagem Live 64-bit %sGB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Imagem 32-bit %sGB Live" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Imagens Netinstall:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Imagem 32-bit %sMB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" -"Comunicado de lançamento" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Leia o anúncio de lançamento completo na Revista Fedora." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Notas do Release" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Aprenda sobre as modificações desde a ultima versão do Fedora como também os" -" requisitos mínimos e recomendações para executar o Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Guia de Instalação" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Nós o recomendamos a dar uma olhada nisso antes de instalar em seu sistema, " -"pois isso responde a diversas perguntas comuns." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Bugs Comuns" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Um excelente recurso para consultar no caso de você se ver envolto em " -"quaisquer problemas ao instalar ou executar o Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "O que significa \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"O Fedora Media Writer criará um Fedora Workstation completo e em execução no" -" qual você poderá executá-lo diretamente de seu dispositivo USB. Você pode " -"utilizar a imagem Live para testar e brincar com o Fedora sem realizar " -"alterações em seu disco rígido." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Quando estiver pronto, você poderá instalar o Fedora em seu disco rígido a " -"partir dessa versão \"live\" do Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Baixar o Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Baixar o Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Este é um software de pré-lançamento e é mantido pelo Workstation Working Group. Por favor, direcione " -"perguntas para sua lista de discussão ou " -"%(team_irc)s na freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Rodando versões de pré-lançamento do Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Para executar uma versão de pré-lançamento do Fedora Workstation, você " -"precisará:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Download disponível abaixo)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Uma imagem ISO live da versão de pré-lançamento do Fedora" -" que você deseja executar" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"AVISO: Esse procedimento destrói todos os dados em sua mídia USB. Tenha " -"certeza de realizar uma cópia de segurança de quaisquer arquivos importantes" -" da sua mídia USB antes de fazer isso." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Descarregue o aplicativo Fedora Media Writer abaixo." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Baixar a imagem ISO desejada." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Abra o aplicativo Fedora Media Writer. Você pode ter que informar uma senha " -"para propiciar as permissões corretas para o aplicativo." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Selecione \"SO Customizado...\" da lista." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Na página SO Customizado, selecione o botão\"Selecionar ISO Live\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Na janela de seleção de arquivo, encontre e selecione a imagem ISO que você " -"baixou." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Insira o seu Pendrive no computador. Se você já utilizou o seu Pendrive " -"anteriormente para criar uma mídia live, você pode precisar de restaurá-lo " -"para as configurações de fábrica. O aplicativo irá indagá-lo se deverá " -"fazê-lo nesse caso." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Selecione \"Criar USB Live\" para escrever a imagem. Aguar até que o " -"processo esteja concluído antes de remover a mídia e fechar o aplicativo." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Como testar pré-lançamentos" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Uma wiki de guia do Fedora sobre como ajudar a testar versões de pré-" -"lançamento do Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arquitetura" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Lançar instância AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Selecione a região mais próxima" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Lance-o!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Normas de Exportação" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Leia as normas de exportação completas" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Ao clicar e baixar o Fedora, você concorda com os seguintes termos e " -"condições." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Leia mais >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Sobre" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Sobre o Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Patrocinadores" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Legal" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Obter o Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Obter o Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Obter o Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Downloads Alternativos" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Suporte" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Obter Ajuda" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Pergunte ao Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Problemas comuns" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portal Fedora Developer" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Guia de instalação" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Associação" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Junte-se ao Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "SIGs do Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistema de contas do Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunidade Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "O Fedora é patrocinado pela Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Saiba mais sobre a relação entre Red Hat e Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. e outros." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Por favor, envie quaisquer comentários ou correções para o time de websites." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Mudar idioma" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Tem mais no \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Enxuto. Poderoso. Pronto para a nuvem" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"A tecnologia mais recente. Uma instituição estável. Juntos, por suas " -"aplicações e serviços." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Documentação e outros recursos" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Outras formas de obtenção da mídia" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Você pode comprar a mídia de instalação do Fedora com vendedores on-line ou com vendedores " -"locais na sua região." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Não pode pagar o preço da mídia de instalação? Solicite a mídia de " -"instalação do Fedora pelo programa de mídia gratuita do " -"Fedora." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informação da chave GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Key ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingerprint" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Obtenha em:" diff --git a/getfedora.org/po/ro.po b/getfedora.org/po/ro.po deleted file mode 100644 index ce87148..0000000 --- a/getfedora.org/po/ro.po +++ /dev/null @@ -1,2481 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Jobava , 2016. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2016-02-25 05:31-0500\n" -"Last-Translator: Jobava \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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Codul de conduită Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Codul de conduită Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Comportați-vă ca un membru al comunității, urmați codul de conduită." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Codul de conduită" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Comunitatea Fedora este alcătuită dintr-un amestec de profesioniști și " -"voluntari din lumea întreagă care lucrează la toate aspectele distribuției, " -"de la cod la marketing. Diversitatea este una dintre punctele forte, dar " -"poate duce și la probleme de comunicare sau neînțelegeri. Pentru a preveni " -"aceste probleme avem câteva reguli de conduită la care trebuie să adere cei " -"care folosesc resursele proiectului." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Aceasta nu este o listă exhaustivă de lucruri pe care nu le puteți face. " -"Acestea trebuie considerate în spiritul în care sunt intenționate - un ghid " -"care face mai ușor să fim excelenți cu fiecare." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Fiți amabili. Munca dumneavoastră va fi folosită de alți oameni și voi veți " -"depinde de munca altora. Orice decizii luate vor afecta utilizatorii și " -"colegii dumneavoastră și trebuie să considerați aceste consecințe când luați" -" decizii." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Fiți respectuoși. Nu putem cădea de acord tot timpul, dar dezacordul nu este" -" o scuză pentru comportamentul necorespunzător și lipsa manierelor. Cu toții" -" devenim frustrați din când în când, dar nu trebuie să permitem ca " -"frustrarea să se transforme în atacuri la persoană. Trebuie să reținem că o " -"comunitate în care oamenii nu se simt bine, sau se simt amenințați, nu este " -"o comunitate productivă. Membrii comunității Fedora trebuie să fie " -"respectuoși când interacționează cu alți contribuitori, dar și cu oameni din" -" afara comunității Fedora sau cu utilizatorii acesteia." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Atunci când nu suntem de acord, încercăm să înțelegem motivele. " -"Dezacordurile de natură socială sau tehnică se întâmplă mereu iar Fedora nu " -"este o excepție. Este important să rezolvăm diferendurile și părerile " -"diferite în mod constructiv." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Rețineți că noi toți suntem diferiți. Puterea Fedorei vine din comunitatea " -"sa variată, oameni cu formații diferite. Oamenii diferiți au perspective " -"diferite. Chiar dacă nu înțelegeți de ce cineva are un alt punt de vedere nu" -" înseamnă că greșesc. Nu uitați că a greși este uman și pasarea vinovăției " -"nu este productivă. Oferiți-vă să ajutați în rezolvarea disputelor și să " -"învățați din greșeli." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Alege libertatea. Alege Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation este un sistem de operare șlefuit și ușor de folosit " -"pentru laptopuri și calculatoare tip desktop, cu un set complet de unelte " -"pentru dezvoltatori și artizani de toate felurile." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Descarcă acum" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server este un sistem de operare puternic și flexibil care include " -"ultimul răcnet pentru tehnologiile din centrul de date. Vă pune în control " -"asupra infrastructurii și a serviciilor dumneavoastră." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora a fost dintotdeauna liberă pentru oricine să o folosească, modifice " -"și să o distribuie. Este construită de oameni de pe tot globul care lucrează" -" împreună ca o comunitate: proiectul Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Vreți mai multe opțiuni Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponsorii Fedorei" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Sponsor principal" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Descarcă" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Verifică încă o dată adresa dacă ai introdus-o manual. Ai copiat-o corect?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Importul cheilor" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Despre Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsori" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Asistență" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Ghid de instalare" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Participă" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Alătură-te Fedorei" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Comunitatea Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora e sponsorizată de Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/ru.po b/getfedora.org/po/ru.po deleted file mode 100644 index 1e3ec48..0000000 --- a/getfedora.org/po/ru.po +++ /dev/null @@ -1,2816 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Игорь Горбунов , 2014 -# Igor Gorbounov , 2015. #zanata -# yuliya , 2015. #zanata -# Igor Gorbounov , 2016. #zanata -# Igor Gorbounov , 2017. #zanata -# Igor Gorbounov , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-04-16 04:09-0400\n" -"Last-Translator: Igor Gorbounov \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" -"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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Правила поведения проекта Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Правила поведения проекта Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Ведите себя как участник сообщества, следуйте Правилам поведения." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Правила поведения" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Сообщество Проекта Fedora состоит из смеси профессионалов и добровольцев со " -"всего мира, работающих над каждой составляющей дистрибутива, от кодирования " -"до маркетинга. Разнообразие - это одно из наших больших преимуществ, но оно " -"может привести также к проблемам общения и к неудовлетворенности. Поэтому у " -"нас есть несколько основных правил, которых мы просим придерживаться при " -"использовании ресурсов проекта." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Не нужно это воспринимать как полный список того, чего нельзя делать. " -"Примите это скорее как идею, как руководство к тому, чтобы стать " -"безупречными по отношению друг к другу." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Действуйте обдуманно. Ваша работа будет использоваться другими людьми, а вы," -" в свою очередь, будете зависеть от чужой работы. Любое ваше решение " -"повлияет на пользователей и коллег, поэтому при принятии решений вам следует" -" учитывать эти последствия." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Проявляйте уважение. Не все могут быть согласны, но несогласие не может быть" -" оправданием для плохого поведения и дурных манер. Мы все можем испытывать " -"разочарование время от времени, но мы не можем позволить этому превратиться " -"в личный выпад. Важно помнить, что сообщество, в котором люди чувствуют себя" -" неуютно, или им угрожают, не может быть продуктивным. Члены сообщества " -"Fedora должны уважительно относиться как к другим участникам, так и к людям " -"вне сообщества Fedora и к пользователям Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Когда у нас есть разногласия, мы стараемся понять, почему. Расхождения во " -"мнениях, как социальные, так и технические, происходят все время, и Fedora " -"не является исключением. Важно конструктивно разрешать разногласия и " -"различия во взглядах." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Помните, что мы разные. Сила Fedora происходит от ее многообразного " -"сообщества, от людей с самым разным опытом. У разных людей разные взгляды на" -" проблемы. Неспособность понять, почему кто-либо отстаивает свою точку " -"зрения, не означает, что он неправ. Не забывайте, что людям свойственно " -"ошибаться, и взаимные обвинения не приведут нас никуда, и лучше предложить " -"помощь в решении проблем и помочь научиться на ошибках." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Получите Fedora: загрузите нашу ОС на основе Linux для настольного ПК " -"разработчика, для запуска в контейнерах и т.п." - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Выбирайте свободу. Выбирайте Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Меньше настроек, больше новизны. Выберите вариант Fedora

, " -"подходящий вам, и сразу же приступайте к работе." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Вышла Fedora %(rel)s %(state)s! Заходите в раздел загрузок " -"и проверяйте." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Выпуск Fedora %(rel)s! Получите сейчас." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Рабочая станция" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Загрузить сейчас" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation — это отточенная, легкая в использовании операционная " -"система для переносных и настольных компьютеров с полным набором " -"инструментов для разработчиков и производителей всех видов." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Загрузить" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Сервер" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server — мощная, гибкая операционная система, в которую вошли лучшие " -"и самые новые технологии для центров обработки данных. Она дает вам контроль" -" над всей вашей инфраструктурой и услугами." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic предоставляет самую лучшую платформу для вашего стека " -"приложений Linux-Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora абсолютно бесплатна, будь то использование, копирование или " -"модификация ее компонентов. Она разрабатывается и используется людьми, " -"живущими в разных уголках планеты, но работающими вместе как единое " -"сообщество: Проект Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Еще больше возможностей Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Сообщество Fedora также выпускает образы ARM, альтернативные live-" -"сборки, и другие варианты Fedora, соответствующие особым требованиям. " -"Просмотрите их на веб-сайте Сборки Fedora или на веб-сайте" -" Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Будьте на связи и в курсе дел" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Хотите принимать участие? " -"Узнайте, что происходит в сообществе! Не " -"отставайте от последних новостей и интересных материалов на Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Читайте документацию." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Проверьте примечания к выпуску для подробной информации о текущей версии. " -"Чтобы узнать больше об использовании Fedora и получить дополнительные " -"сведения, например, системные требования, см официальную документацию." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Получайте помощь." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Требуется помощь по использованию Fedora? Ознакомьтесь с Ask " -"Fedora, где можно прочитать архивы вопросов других пользователей или " -"задать свой собственный вопрос." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Спонсоры Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Проект Fedora гордится своими спонсорами, в числе которых:" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Главный спонсор" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. iявляется главным спонсором Проекта Fedora." -" Red Hat предоставляет проекту Fedora широкий спектр ресурсов, в том числе: " -"сотрудников с полным рабочим днем, аппаратную инфраструктуру и сети с " -"высокой пропускной способностью, финансирование мероприятий и юридическую " -"помощь." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Проект Fedora благодарит следующих спонсоров за оказание существенной " -"поддержки:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Заинтересованы в спонсировании чего-нибудь для Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Свяжитесь с admin@fedoraproject.org или " -"загляните на #fedora-admin на " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Проверьте загруженный образ" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Инструкции по CHECKSUM и проверке" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Как мне проверить образ?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Как только вы загрузили образ, проверьте его целостность и безопасность. " -"Чтобы проверить образ, начните с загрузки соответствующего файла CHECKSUM в " -"каталог, куда загружен образ." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Для 64-разрядных образов" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Для 32-разрядных образов" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Для ISO-файлов Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Для образов Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Далее, импортируйте GPG-ключи Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Вы можете проверить сведения о GPG ключах здесь." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Проверьте файл CHECKSUM:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "Файл CHECKSUM должен иметь верную подпись одного из следующих ключей:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Неглавные архитектуры Fedora 26 (AArch64, PPC64, PPC64le, s390 и s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Наконец, когда файл CHECKSUM проверен, убедитесь, что контрольная сумма " -"образа совпадает:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Если результат подтверждает, что файл правильный, он готов к использованию!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Как проверить загруженные образы на другой операционной системе?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Получите Fedora Atomic: самую лучшую платформу для стека ваших упакованных в" -" контейнеры приложений" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Разворачивайте и масштабируйте свои упакованные в контейнеры приложения с " -"помощью неизменяемой инфраструктуры." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Загрузить или запустить в общедоступном облаке" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“Мы решили использовать Fedora Atomic в качестве основы для своего " -"кластерного решения Navops Launch — Kubernetes, потому что наши клиенты " -"доверяют операционным системам Red Hat и уже используют их. Нам нравится " -"неизменяемость Fedora Atomic, которая идеально подходит для контейнерных " -"сред.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Главный архитектор, Navops от Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host из проекта Project Atomic - это легкая, неизменяемая платформа, " -"созданная с единственной целью запуска приложений в контейнерах." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Версия Atomic Host для Fedora использует тот же репозиторий пакетов, что и " -"Fedora Server, и предоставляет новейшие версии Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Обновления OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Атомарно обновляйте свою систему с последней версии OStree. Сделайте свои " -"серверы одинаковыми, и их легко можно будет откатить назад в случае проблемы" -" с обновлением." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Управление контейнерами Docker, системными контейнерами, Atomic App и т.д. с" -" помощью одного удобного инструмента командной строки." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Оптимизировано для Kubernetes и OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Собираете кластер Kubernetes или Origin для запуска своих приложений в " -"контейнерах? Запустите его на Fedora Atomic, которая предоставит вам " -"требуемую платформу на ОС с меньшими ресурсами." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Готовы попробовать Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Спасибо за загрузку Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Загрузка начнётся через несколько секунд. Если этого не произошло, нажмите " -"на ссылку:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Проверьте загруженный образ!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Сразу после загрузки образа проверьте его целостность и безопасность. Чтобы " -"проверить образ, начните с загрузки соответствующего файла CHECKSUM в один " -"каталог с образом и следуйте этим инструкциям." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Загрузить Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Загрузить Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host собирается примерно каждые 2 недели." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Последние две недели сборки не удовлетворяли нашим критериям тестирования. " -"Имеющимся образам больше %(atomic_age)s дней. Проверьте блог проекта Atomic " -"на наличие обновлений и информации о блокирующих ошибках Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Это последние официальные образы Fedora Atomic Host images, сделанные " -"%(atomic_age)s дней назад." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Образы Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host - это передовая базовая операционная система, следующая " -"модели Проекта Atomic. Она спроектирована на основе Kubernetes и " -"контейнеров. Опубликованные здесь образы демонстрируют эту работу. Обратите" -" внимание, что образы прошли несколько уровней автоматизированной проверки." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Тестируйте новые версии, прежде чем использовать в работе. " -"Если обнаружится проблема, инструменты Atomic Host дадут возможность легко " -"вернуться к предыдущей версии — и если это случится, помогите нам " -"заполнением отчетов об ошибках или отправкой исправлений." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Образы Fedora Atomic Host обновляются примерно каждые две " -"недели, а не в соответствии с основным шестимесячным ритмом Fedora." -" Поскольку разработка ведется быстро, поддерживается только последняя " -"основная версия Fedora." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Обратите внимание, что разные носители Fedora Atomic Host " -"подвергаются различным уровням автоматического тестирования. Узнать" -" больше о Проекте Atomic можно на projectatomic.io. Чтобы" -" увидеть текущий статус тестирования, нажмите здесь." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Образы Atomic Host для Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"На ссылках ниже даны списки доступных виртуальных машин Hardware Virtual " -"Machine (HVM) AMI с Atomic Host по регионам с кнопками для их запуска в " -"вашей учетной записи Amazon Web Services. Также предоставляются AMI ID для " -"использования с консолью AWS или инструментами командной строки." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Формат GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"AMI-образы в формате GP2 используют быстрые устройства хранения SSD; " -"используйте эти AMI для получения большего быстродействия, хотя имейте в " -"виду, что затраты на устройства хранения будут выше стандартных." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Закрыть" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Образы HVM AMI с GP2 Atomic Host HVM AMI для Fedora %(rel)s" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Регион" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Запуск" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Стандартный формат)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"AMI стандартного формата более удобны для нечастого доступа к данным и для " -"низкой стоимости хранения. " - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Стандартные HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Стандартные Fedora %(rel)s Atomic Host HVM AMI" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Стандартный формат" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Образы Atomic Host для Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Образы виртуальных машин Vagrant для Fedora Atomic Host имеются для работы с" -" VirtualBox и Libvirt. Можно поднять Fedora Atomic Host в виртуальной машине" -" Vagrant, загрузив образы с Fedora, или используя средства vagrant для " -"получения образов с HashiCorp's Vagrant Cloud." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Просмотреть загрузки Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Загрузки образов Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Это образы виртуальных машин для развертывания с использованием Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Образ для VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Если вы используете Vagrant на Mac OS X или Windows, это подходящие для вас " -"образы ." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Загрузки" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-разрядный базовый образ %sMB VirtualBox Vagrant" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Образ для libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Если вы используете Vagrant на Fedora, это подходящий для вас образ." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-разрядный базовый образ %sMB libvirt/KVM Vagrant" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Просмотр загрузок с помощью средств Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Загрузки Vagrant с помощью средств Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Можно использовать следующую команду для получения образов Vagrant с HashiCorp's Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Если вы ранее уже запускали Fedora %(rel)s Atomic Host в Vagrant на своем " -"компьютере, тогда вы можете получить последнюю версию командой:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Дополнительные сведения о запуске Vagrant на Fedora Workstation см. на нашей вики-странице." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Образы Atomic Host для облачных сред" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Образ qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Это образ Fedora %(rel)s Cloud Atomic Host в формате Qcow2 для использования" -" с OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-разрядный %sМБ Qcow2-образ" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Образ Raw" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Это образ Fedora %(rel)s Cloud Atomic Host в сжатом формате raw. Если вы не " -"уверены, что использовать, попробуйте этот образ." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-разрядный %sМБ сжатый xz Raw-образ" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Другие загрузки" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "ISO-образ Atomic Host (%sМБ)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Контейнерный образ (%sМБ)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Попробуйте предварительный выпуск" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Мы работаем над нашим следующим выпуском." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Помогите нам подготовить F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Загрузить образы F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Как проверять предварительные выпуски" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ресурсы" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Проект " -"Atomic: начало работы" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Документация по началу работы с Проектом Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Проект" -" Atomic: список рассылки" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Присоединяйтесь к основным спискам рассылки на atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Проект Atomic: чат IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Присоединяйтесь к каналу Проекта Atomic #atomic на " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Проверка" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Проверьте образ" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Загрузить Atomic Host для Fedora %(rel)s %(state)s" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Это новейшие образы Fedora Atomic Host, созданные " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Это предварительная версия ПО, и оно поддерживается Atomic Working Group. Направляйте свои вопросы в " -"их список рассылки или чат %(team_irc)s на " -"freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Обо всех проблемах и ошибках нужно сообщать через Red Hat " -"Bugzilla. Проект Fedora не дает никаких гарантий в отношении его " -"пригодности или полезности." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Образы HVM AMI с GP2 Atomic Host для Fedora %(rel)s %(state)s" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Это образ Fedora %(rel)s %(state)s Cloud Atomic Host в формате Qcow2 для " -"использования с OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Это образ Fedora %(rel)s %(state)s Cloud Atomic Host в сжатом формате raw. " -"Если вы не уверены, что использовать, попробуйте этот образ." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - Страница не найдена" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Страница не найдена" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Приносим извинения, но запрошенный вами файл или страницу не удалось найти." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Советы по устранению проблем" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Еще раз проверьте адрес, если он введен вручную. Верно ли скопирована " -"ссылка?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Плохая ссылка? Свяжитесь с вебмастером и объясните, " -"какая ссылка привела вас сюда." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Страница или файл могли быть перемещены. Проверьте главный сайт или используйте поиск в вики." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Ключи для подписывания пакетов" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"На этой странице перечисляются открытые ключи GPG, применяемые для " -"подписывания пакетов в Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Узнайте, как Fedora защищает вас." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora использует подписи пакетов GPG-ключами для того, чтобы гарантировать " -"целостность пакетов." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Чтобы узнать больше, прочитайте FAQ »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Используемые ключи" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Первичный" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Вторичный" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Ищете устаревшие ключи?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Устаревшие ключи для подписывания пакетов" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"На этой странице перечисляются открытые ключи GPG, которые больше не " -"используются для подписывания пакетов в Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Устаревшие и неиспользуемые ключи" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "GPG ключ Fedora " - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Пакеты на установочных носителях подписываются этим ключом. Соответствующие " -"репозитории dnf - fedora, fedora-updates " -"для Fedora 7-9, также core и core-updates " -"для Fedora Core (версия 6 и ранее). В сообщении http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html объясняется, почему этот ключ " -"устарел." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Тестирование Fedora >= 7" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Тестирование Fedora" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Если вы участвуете в тестировании этих пакетов, то этот ключ вы будете " -"использовать для проверки тестируемых пакетов. Этим ключом подписываются " -"пакеты в репозитории fedora-testing. В сообщении http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html объясняется, почему этот ключ " -"устарел." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Тестирование Fedora 8-9" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Тестирование Fedora 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Если вы используете Fedora Extras с Fedora Core 6, этот пакет находится в " -"репозитории extras. Этот ключ больше не будет " -"использоваться после завершения жизненного цикла Fedora Core 6 и Extras (7 " -"декабря 2007). Этот ключ не входит в состав пакета fedora-" -"release в Fedora 7 и последующих выпусках." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Этот ключ использовался для пакетов, выпущенных проектом Fedora Legacy для " -"обновления выпусков, завершивших жизненный цикл. Проект Fedora Legacy " -"больше не существует, поэтому этот ключ больше не будет использоваться для " -"подписи пакетов. Этот ключ не входит в состав пакета fedora-" -"release в Fedora 7 и последующих выпусках Fedora." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ о подписывании пакетов" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Узнайте, как в Fedora используется GPG для подписывания пакетов, чтобы " -"гарантировать вам безопасность." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Как проект Fedora использует GPG ключи для подписывания пакетов?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Каждый стабильный RPM пакет, опубликованный проектом Fedora, подписан GPG " -"подписью. По умолчанию dnf и графические утилиты обновления проверяют эту " -"подпись и отказывают в установке пакета, не имеющего такой подписи, или с " -"неверной подписью. Необходимо всегда проверять подписи пакетов, прежде чем " -"приступать к их установке. Эти подписи гарантируют, что устанавливаемый " -"пакет предоставлен проектом Fedora и не был изменён (случайно или намеренно)" -" зеркальным сервером или сайтом, с которого он был получен." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Пакеты, которые могут быть загружены из системы сборки Koji, не содержат " -"подписей, поэтому соблюдайте осторожность при их использовании. Аналогично, " -"последние версии пакетов в Rawhide могут предоставляться без подписи." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Импорт ключей" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Ключи входят в пакет fedora-release, их можно найти в " -"каталоге /etc/pki/rpm-gpg. Обратите внимание, что не все " -"ключи в этом каталоге применены в проекте Fedora — некоторые используются " -"для подписи пакетов Red Hat Enterprise Linux или не используются вовсе. Если" -" вы используете пакеты Red Hat Enterprise Linux, обратитесь к https://www.redhat.com/security/team/key. Используемые в " -"Fedora ключи включены в конфигурацию репозиториев dnf, таким образом, скорее" -" всего, вам не понадобится вручную импортировать их в базу rpm." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Кроме пакета fedora-release и этой страницы, ключи Fedora можно загрузить с " -"открытого сервера ключей, например, keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Для некоторых репозиториев, таких как репозитории со стабильными или " -"тестируемыми пакетами в стандартной конфигурации, dnf может" -" самостоятельно обнаружить требуемый ключ и запросить у пользователя " -"подтверждение на его импорт, если он ещё не присутствует в базе данных rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "Ключи можно импортировать в базу данных RPM вручную:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"За дополнительной информацией обратитесь к руководству rpm." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Чтобы убедиться, что ключи в вашей системе совпадают с ключами, приведёнными" -" здесь, можно использовать GnuPG для проверки совпадения отпечатков ключей. " -"Например:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Получите Fedora Server: новейшие технологии для ваших приложений и услуг" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Легкое администрирование" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Простое управление системой с помощью мощного, современного интерфейса " -"Cockpit. Просмотр и контроль работы и состояния системы, а также " -"развертывание и управление услугами на базе контейнеров." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Службы баз данных" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server несет с собой масштабируемый сервер баз данных корпоративного " -"уровня на базе проекта с открытым исходным кодом PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Полное решение уровня предприятия" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Готовы попробовать Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Загрузить Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Загрузить Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-разрядный %sГБ установочный образ" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Установочный образ Fedora Server дает вам возможность сделать носитель для " -"своего компьютера, с которого происходит загрузка в программу установки и " -"непосредственная установка Fedora Server на жесткий диск" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Для использования этого образа нужен привод, который может создать, или " -"\"прожечь\" DVD, или флэш-накопитель USB размером не меньше образа." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Образ netinstall:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-разрядный %sМБ образ" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Альфа" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Загрузить образы F%(rel)s Альфа" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Бета" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Загрузить образы F%(rel)s Бета" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Еще Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Технология ARM® " - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Как превратить Live-образ в загружаемый носитель?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"После загрузки образа сделайте из него загружаемый носитель. Запишите образ на чистый DVD-диск или запишите образ на USB флеш-диск." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Как загрузиться с носителя?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Выясните в документации на ваш компьютер процедуру загрузки с других " -"носителей, кроме встроенного жесткого диска. Этот процесс может отличаться в" -" зависимости от производителя и модели вашего компьютера. Вам могут " -"оказаться полезными эти советы общего характера." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Загрузить Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Загрузить Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-разрядный %sГБ установочный образ" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Это предварительная версия ПО, и оно поддерживается Server Working Group. Направляйте свои вопросы в " -"их список рассылки или чат %(team_irc)s на " -"freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Читайте Примечания к выпуску для получения " -"дополнительной информации об изменениях и новых возможностях, и страницу Распространенные ошибки - для информации о " -"часто встречающихся ошибках и о том, как их избежать." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Когда будет выпущена Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Читайте обо всех основных вехах графика выпуска..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Сразу после загрузки образа проверьте его целостность и безопасность. Чтобы " -"проверить образ, начните с загрузки указанного ниже файла CHECKSUM в один " -"каталог с образом и следуйте этим инструкциям." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Получите Fedora Workstation: лучшая настольная ОС для разработчиков ПО" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Это долгожданная рабочая станция на Linux." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation - надежная, удобная и мощная операционная система для " -"ноутбука или настольного компьютера. Она поддерживает широкий спектр " -"разработчиков, от любителей и студентов до профессионалов в корпоративных " -"средах." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"«Множество инструментов, предоставляемых
Fedora, дает мне возможность " -"сделать работу.
Это просто работает.»" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Инженер по нагрузочному тестированию JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Элегантный пользовательский интерфейс" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Сосредоточьтесь на своей программе в рабочей среде GNOME 3. GNOME построен с" -" поддержкой обратной связи с разработчиками и сводит к минимуму отвлекающие " -"факторы, поэтому вы можете сосредоточиться на том, что важно." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Законченный набор инструментов с открытым исходным кодом" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Не отвлекайтесь на попытки отыскать или собрать нужные инструменты. Имея в " -"Fedora полный комплект языков, инструментов и утилит с открытым исходным " -"кодом, всё можно найти на расстоянии одного нажатия или одной команды. Есть " -"даже услуги по размещению проектов и репозитории, например, COPR, чтобы " -"сообщество могло быстрее получить доступ к текстам программ и сборкам." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes и другие инструменты для виртуальных сред" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"С помощью GNOME Boxes можно быстро настраивать и запускать виртуальнаые " -"машины, чтобы тестировать свои программы на различных платформах. Или " -"углубиться в мощные инструменты виртуализации с поддержкой скриптового языка" -" для получения еще большего контроля." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Встроенная поддержка Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Упаковывайте в контейнеры свои собственные приложения или разворачивайте " -"готовые контейнизированные приложения в Fedora, используя новейшую " -"технологию, например, Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Готовы попробовать Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Загрузить Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Загрузить Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s МБ Fedora Media Writer для Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-разрядный %s ГБ ISO для Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s МБ Fedora Media Writer для Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Загрузите Fedora Media Writer для своей операционной системы." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Нужны инструкции? Или другая версия?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Запуск Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Для запуска Fedora Workstation вам потребуется:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (выше ссылка для загрузки)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "USB-накопитель, на котором есть не меньше %s ГБ свободного места" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"При желании можно установить Fedora Workstation на ноутбук или настольный " -"компьютер, в котором процессор с частотой не менее 1 ГГц, 1 ГБ ОЗУ и 10 ГБ " -"свободного места. Чтобы сделать это, запустите live-версию Fedora " -"Workstation со своего флэш-накопителя USB на компьютере, на котором вы " -"хотите сделать установку, запустите приложение Fedora Media Writer и " -"следуйте подсказкам на экране для завершения установки." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Поддерживаемые платформы" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer поддерживает следующие платформы:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Автообнаружение показывает, что у вас работает Mac OS X, и " -"вам предлагается эта версия для загрузки. Если ваша операционная система " -"определена неправильно, или вы хотите загрузить другую версию, нажмите " -"приведенную ниже кнопку «Просмотреть все загрузки платформ»." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Автообнаружение показывает, что у вас работает Linux, и вам" -" предлагается эта версия для загрузки. Если ваша операционная система " -"определена неправильно, или вы хотите загрузить другую версию, нажмите " -"приведенную ниже кнопку «Просмотреть загрузки для всех платформ»." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Автообнаружение показывает, что у вас работает Windows, и " -"вам предлагается эта версия для загрузки. Если ваша операционная система " -"определена неправильно, или вы хотите загрузить другую версию, нажмите " -"приведенную ниже кнопку «Просмотреть загрузки для всех платформ»." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Просмотреть загрузки для всех платформ" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Доступно с помощью DNF для Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Подробнее" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Как использовать этот ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Проверьте этот образ" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-разрядный %sГБ live-образ" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-разрядный %sГБ live-образ" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Образы netinstall для установки по сети:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-разрядный %sМБ образ" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Объявление о выпуске" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Прочитайте полностью объявление о выпуске на Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Примечания к выпуску" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Узнайте об изменениях с последней версии Fedora, а также о минимальных " -"требованиях и рекомендациях для запуска Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" -"Руководство по установке" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Рекомендуем просмотреть это перед установкой на свой компьютер, потому что в" -" нем есть ответы на многие известные вопросы." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" -"Распространенные ошибки" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Отличный ресурс для помощи в случае, если возникнут проблемы при установке " -"или работе Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Что означает «Live»?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer создаст полную рабочую Fedora Workstation, которую можно" -" сразу запустить с USB-привода. Live-образ можно использовать для " -"тестирования Fedora, ничего не изменяя на своем жестком диске." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Когда будете готовы, сможете установить Fedora на свой жесткий диск, " -"находясь в этой «live»-версии Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Сборки Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Загрузить Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Загрузить Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Это предварительная версия ПО, и оно поддерживается Workstation Working Group. Направляйте свои " -"вопросы в их список рассылки или чат " -"%(team_irc)s на freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Запуск предварительных версий Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Для запуска предварительной версии Fedora Workstation вам потребуется:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (ниже есть ссылка для загрузки)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"ISO-файл live-образа предварительной версии Fedora, " -"которую вы хотите запустить" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ПРЕДУПРЕЖДЕНИЕ: Эта процедура уничтожит все данные на вашем USB-носителе. " -"Убедитесь сначала, что сделали резервные копии всех важных файлов с вашего " -"USB-носителя." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Ниже дана ссылка на загрузку Fedora Media Writer." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Загрузите нужный ISO-образ." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Откройте приложение Fedora Media Writer. Может потребоваться пароль, чтобы " -"дать приложению правильные права доступа." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Выберите из списка «Специальная ОС...»." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "На странице «Специальная ОС» выберите кнопку «Выберите Live ISO»." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "В окне выбора файлов найдите и выберите загруженный образ ISO." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Вставьте USB-накопитель в компьютер. Если раньше ваш USB-накопитель уже " -"использовался для создания live-носителя, может потребоваться восстановить " -"его в соответствии с заводскими настройками. В этом случае приложение " -"спросит вас, нужно ли это делать." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Для записи образа выберите «Создать Live USB». Не извлекайте носитель и не " -"закрывайте приложение, пока процесс не завершится." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Как тестировать предварительные выпуски" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Wiki-руководство Fedora для помощи при тестировании предварительных версий " -"Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Архитектура" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Основное хранилище" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Запуск экземпляра AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Выберите ближайший регион" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-разрядный (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-разрядный (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Запускайте!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Ограничения на экспорт" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Прочитайте полный перечень ограничений на экспорт" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "Выбрав загрузку Fedora, вы соглашаетесь соблюдать следующие условия." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Читать далее →" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Описание" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "О проекте" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Спонсоры" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Юридическая информация" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Загрузить Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Загрузить Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Получить Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Другие загрузки" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Поддержка" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Получить справку" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Задать вопрос" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Известные ошибки" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Портал разработчика Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Руководство по установке" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Участие" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Стать участником" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Планета Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Специальные группы" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Система учетных записей Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Сообщество Проекта Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora поддерживается Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Подробнее о том, как проект связан с компанией Red Hat »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. и другие." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Присылайте любые комментарии и исправления команде разработки Интернет-ресурсов." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Сменить язык" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ОК" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Еще \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Компактная. Мощная. Готовая к любому облаку" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Новейшая технология. Прочный фундамент. Тесно связаны ради ваших приложений " -"и услуг." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Документация и другие ресурсы" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Перед установкой Fedora вы, возможно, захотите убедиться, что ваша система " -"удовлетворяет минимальным требованиям для Fedora. В примечаниях к выпуску вы узнаете минимальные " -"требования и рекомендации." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Еще есть полное руководство по установке. " -"Рекомендуем просмотреть его перед установкой на свою систему, потому что в " -"нем есть ответы на многие известные вопросы." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Другие способы получения носителей" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Можно купить установочный носитель для Fedora в интернет-" -"магазине или у региональных распространителей." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Не можете позволить себе купить установочный носитель? Запросите " -"установочный носитель с Fedora в программе Fedora Free Media " -"Program." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Информация о GPG-ключе" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Идентификатор ключа" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Отпечаток" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Получить из:" diff --git a/getfedora.org/po/ru_RU.po b/getfedora.org/po/ru_RU.po deleted file mode 100644 index 8192493..0000000 --- a/getfedora.org/po/ru_RU.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \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 1.3\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/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/si.po b/getfedora.org/po/si.po deleted file mode 100644 index 96837e8..0000000 --- a/getfedora.org/po/si.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Sinhala\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: si\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/sk.po b/getfedora.org/po/sk.po deleted file mode 100644 index ed8b652..0000000 --- a/getfedora.org/po/sk.po +++ /dev/null @@ -1,2814 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Jakub Dubec , 2014 -# Dusan Kazik , 2015. #zanata -# Dusan Kazik , 2016. #zanata -# feonsu , 2016. #zanata -# feonsu , 2017. #zanata -# feonsu , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-02 02:24-0400\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" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Pravidlá správania Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Pravidlá správania Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Správajte sa ako člen komunity podľa pravidiel správania." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Pravidlá správania Fedora" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Komunita Fedory je tvorená zmesou profesionálov a dobrovoľníkov z celého " -"sveta, ktorí pracujú na každom aspekte distribúcie od programovania až po " -"marketing. Rozmanitosť je jedna z našich silných stránok, ale tiež môže " -"viesť ku komunikačným problémom a k nedorozumeniam. Z tohto dôvodu máme " -"niekoľko základných pravidiel, ktoré žiadame ľudí dodržovať, ak používajú " -"zdroje projektu." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Toto nie je vyčerpávajúci zoznam vecí, ktoré nemôžete robiť. Radšej to berte" -" v duchu v akom je to zamýšľané - príručku na uľahčenie, ako byť navzájom " -"tolerantný." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Buďte ohľaduplný. Vašu prácu budú používať iní ľudia a naopak vy budete " -"závislý na práci iných. Akékoľvek rozhodnutie, ktoré urobíte, ovplyvní " -"používateľov a kolegov. Preto by ste mali pri rozhodovaní tieto dôsledky " -"vziať do úvahy." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Buďte zdvorilý. Nie všetci budú vždy súhlasiť, ale iný názor nie je " -"výhovorkou pre zlé správanie a vystupovanie. Všetci môžeme niekedy pocítiť " -"sklamanie, ale nemôžeme dovoliť, aby sa toto sklamanie zmenilo na osobný " -"útok. Je dôležité si zapamätať, že komunita, kde sa ľudia cítia nesvoji " -"alebo ohrození, nie je práve produktívna. Členovia komunity Fedory by mali " -"byť zdvorilý pri jednaní s inými prispievateľmi ako aj ľudmi mimo tejto " -"komunity a používateľmi Fedory." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Keď nesúhlasíme, snažíme sa pochopiť prečo. Sociálne aj technické nezhody sa" -" dejú stále a Fedory nie je výnimka. Je dôležité konštruktívne riešiť " -"nezhody a líšiace sa názory." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Pamätajte, že sme rozdielny. Sila Fedory pochádza z jej rozmanitej komunity " -"a ľudí z rôznych prostredí. Rôzny ľudia majú rôzne pohľady na problémy. Byť " -"neschopný pochopiť, prečo niekto zastáva iné stanovisko, neznamená, že sa sa" -" mýli. Nezabudnite, že mýliť sa je ľudské a obviňovanie sa navzájom nás " -"nikam neposunie, preto radšej ponúknite pomoc pri riešení problémov a poučte" -" sa z chýb." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Získajte Fedoru: stiahnite si svoj Linuxový OS pre vývoj, beh kontajnerov, a" -" ešte omnoho viac" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Zvoľte slobodu. Zvoľte Fedoru." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Menej nastavovania, viac inovácií. Zvoľte si druh Fedory

" -"vyhovujúci vašim potrebám a dajte sa do práce tou správnou cestou." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Bola vydaná Fedora %(rel)s %(state)s! Viac nájdete v sekcii" -" s prevzatiami." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Bola vydaná Fedora %(rel)s! Stiahnite ju teraz." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Stiahnuť teraz" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation je odladený, ľahko použiteľný operačný systém pre " -"notebooky a stolné počítače s kompletnou sadou nástrojov pre vývojárov a " -"tvorcov každého druhu." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Stiahnuť teraz" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server je výkonný a flexibilný operačný systém, ktorý zahŕňa " -"najlepšie a najnovšie technológie z oblasti datacentier. Umožní vám ovládať " -"celú vašu infraštruktúru a služby." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic poskytuje najlepšiu platformu pre balík aplikácií Linux-" -"Docker-Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedoru môže každý vždy slobodne používať, upravovať a šíriť. Fedoru tvoria a" -" používajú ľudia z celého sveta, ktorí pracujú spolu ako komunita: Projekt " -"Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Hľadáte viac volieb systému Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Komunita Fedora tiež vydáva obrazy ARM, alternatívne live " -"spiny, a iné varianty Fedory prispôsobené špecifickým požiadavkám. Nájdete " -"ich na webovej stránke Fedora " -"spiny alebo Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Buďte v spojení a informovaný." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Chcete sa zapojiť? Zistiť čo" -" sa deje v komunite?" -" Prečítajte si najnovšie novinky a skvelé veci v časopise Fedora." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Prečítajte si dokumentáciu." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Podrobnejšie informácie o aktuálnom vydaní nájdete v Poznámkach k vydaniu. " -"Ak sa chcete dozvedieť viac o používaní Fedory a podrobnostiach ako napr. " -"systémové požiadavky, pozrite si oficiálnu " -"dokumentáciu." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Získajte pomoc." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Potrebujete pomoc s Fedorou? Tú nájdete na stránke Spýtajte " -"sa Fedory, kde si môžete prečítať archívy otázok od ostatných " -"používateľov, alebo položiť svoju vlastnú otázku." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponzori Fedory" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Projekt Fedora je hrdý, že má nasledujúce organizácie ako sponzorov..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Hlavný sponzor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. je hlavným sponzorom Projektu Fedora. Red " -"Hat poskytuje Projektu Fedora širokú škálu zdrojov, vrátane podpory " -"zamestnancov na plným úväzok, hardvéru infraštruktúry, financovanie akcií a " -"právneho poradenstva." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Projekt Fedora je taktiež vďačný nasledujúcim sponzorom za poskytovanie " -"významnej podpory:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Zaujíma vás sponzorovanie Fedory?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Kontaktujte admin@fedoraproject.org alebo sa " -"zastavte na #fedora-admin na " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Overte si stiahnutý obraz" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Inštrukcie ku kontrolnému medzisúčtu a overeniu" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Ako overím svoj obraz?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Po stiahnutí obrazu si ho overte kvôli bezpečnosti a integrite. Aby ste " -"stiahnutý obraz overili, najskôr si stiahnite správny súbor CHECKSUM do toho" -" istého adresára, kde ste stiahli obraz." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Pre 64-bitové obrazy" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Pre 32-bitové obrazy" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Pre Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "For ISO Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Pre obrazy Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Ďalej naimportujte GPG kľúč Fedory:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Na tomto mieste si môžete overiť detaily GPG " -"kľúčov." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Teraz overte, či je súbor CHECKSUM platný:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Súbor CHECKSUM by mal mať v poriadku signatúru z jedného z nasledujúcich " -"kľúčov:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "Fedora 26 ďalšie architektúry (AArch64, PPC64, PPC64le, s390 a s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"A nakoniec po kontrole súboru CHECKSUM sa presvedčte, že kontrolný súčet " -"obrazu sedí:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Ak výstup uvádza, že je súbor platný, potom je obraz pripravený na použitie." - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Ako overím stiahnutý obraz v inom operačnom systéme?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Získajte Fedoru Atomic: najlepšiu platformu pre vaše aplikácie v " -"kontajneroch" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Nasaďte a škálujte svoje kontajnerové aplikácie v nemennej infraštruktúre." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Stiahnuť alebo spustiť vo verejnom cloude" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“Fedoru Atomic sme si vybrali ako základ pre našu aplikáciu Navops Launch — " -"riešenie pre nasadenie klustera Kubernetes, pretože naši zákazníci veria a " -"už používajú operačné systémy od Red Hat. Máme radi vlastnosť nemennosti " -"Fedory Atomic, čo je vynikajúce pre prostredie s kontajnermi.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "hlavný architekt v Navops, Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host z Projektu Atomic je odľahčená, nemenná platforma, navrhnutá " -"výhradne pre beh aplikácií v kontajneroch." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Verzia Atomic Host vo Fedore používa rovnaké repozitáre balíčkov ako Fedora " -"Server a poskytuje najnovšie verzie Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Aktualizácie OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Automaticky aktualizujte svoj systém z najnovšieho OStree. Zabezpečte, aby " -"vaše servery boli identické a jednoducho sa vráťte späť v prípade problému s" -" aktualizáciou." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Spravujte kontajnery Docker, systémové kontajnery, Atomic App a iné pomocou " -"jedného pohodlného nástroja pre príkazový riadok." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimalizovaný pre Kubernetes a OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Budujete klaster Kubernetes alebo Origin pre beh svojich aplikácií v " -"kontajneroch? Spustite ho na Fedore Atomic, ktorá vám poskytne potrebnú " -"platformu na menšom, štíhlejšom OS." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Pripravený vyskúšať Fedoru Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Stiahnuť Fedoru Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Ďakujeme za stiahnutie Fedory!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Sťahovanie by malo začať o pár sekúnd. Ak nie, kliknite na odkaz nižšie:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Overte si stiahnutý súbor!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Po stiahnutí obrazu si ho overte kvôli bezpečnosti a integrite. Aby ste " -"stiahnutý obraz overili, najskôr si stiahnite správny súbor CHECKSUM do toho" -" istého adresára, kde ste stiahli obraz a riaďte sa týmito inštrukciami." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Stiahnuť Fedoru Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Stiahnuť Fedoru %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host sa vytvára približne každé 2 týždne." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Najnovšia dvojtýždenná verzia nesplnila naše testovacie kritériá. Dostupné " -"obrazy sú z pred %(atomic_age)s dní. Viac informácií o aktualizáciách a " -"blokujúcich chybách nájdete na blogu projektu Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Toto sú najnovšie oficiálne obrazy Atomic Host Fedory vytvorené pred " -"%(atomic_age)s dňami." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Obrazy Atomic" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host je najnovší základný operačný systém, ktorý používa model" -" Projektu Atomic. Je založený na Kubernetes a kontajneroch Docker. Obrazy, " -"ktoré sú tu publikované, prezentujú tento model. Uvedomte si, že obrazy " -"prešli niekoľkými úrovňami automatických testov." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Pred použitím nových verzií v produkcii si ich otestujte. " -"Ak objavíte problém, nástroje Atomic Host vám uľahčia návrat spať na staršie" -" vydanie - ak sa tak stane, pomôžte nám nahlásením chyby alebo odoslaním " -"opravy." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Obrazy Fedory Atomic Host sú aktualizované približne každé dva " -"týždne oproti polročnej frekvencii vydávania Fedory. Pretože vývoj " -"prebieha veľmi rýchlo, podporované je iba posledné hlavné vydanie Fedory." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Uvedomte si, že rôzne médiá Fedory Atomic Host sú podrobené rôznym " -"úrovniam automatických testov. Viac informácií o projekte Atomic " -"môžete nájsť na projectatomic.io. Ak si chcete pozrieť " -"aktuálny stav testov, kliknite sem." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Obrazy Atomic Host pre verejný cloud Amazon EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Nižšie uvedené odkazy obsahujú zoznam dostupných Atomic Host Hardware " -"Virtual Machine (HVM) AMI podľa regiónov a tlačidlá na ich spustenie po " -"prihlásení do účtu webových služieb Amazonu (AWS). Dostupné sú taktiež AMI " -"ID pre použitie v konzole AWS alebo nástrojoch príkazového riadka." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 formát" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"GP2 formát AMI používa rýchlejšie SSD úložisko. Použite ho ak požadujete " -"rýchlosť, hoci náklady na úložisko budú vyššie ako pri štandardnom formáte." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Zavrieť" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Región" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Spustiť" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Štandardný formát" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Štandardný formát AMI je vhodnejší pre dáta, ku ktorým sa pristupuje menej " -"často, alebo ak chcete udržať nízke náklady na úložisko." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Štandardný HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s štandardný Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Štandardný formát" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Obrazy Atomic Host pre Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Vagrant boxy pre Fedoru Atomic Host sú dostupné pre VirtualBox a Libvirt. " -"Fedoru Atomic Host môžete spustiť vo vagrante stiahnutím obrazov z Fedory, " -"alebo pomocou vagrant nástrojov stiahnuť obrazy z Vagrant " -"cloudu HashiCorp." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Zobraziť stiahnutia pre Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Stiahnutie obrazov pre Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Toto sú obrazy Vagrant Box pre nasadenie pomocou Vagrantu." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Obraz VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Ak používate Vagrant na Mac OS X alebo Windows, toto je pravdepodobne vhodný" -" obraz pre vás." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Stiahnuť" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bitový VirtualBox základný obraz pre Vagrant (%sMB)" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Obraz libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Ak používate Vagrant vo Fedore, toto je vhodný obraz pre vás." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bitový libvirt/KVM základný obraz pre Vagrant (%sMB)" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Zobraziť stiahnutia pomocou Vagrant nástrojov" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Stiahnutie Vagrantu pomocou Vagrant nástrojov" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Nasledujúcim príkazom môžete stiahnuť obrazy Vagrant Box z Atlass HashiCorp." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Ak ste už predtým na svojom počítači používali Fedoru %(rel)s Atomic Host vo" -" Vagrante, potom poslednú verziu môžete stiahnuť príkazom:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Viac informácií o spustení Vagrantu na Fedore Workstation nájdete na wiki stránke." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Obrazy Atomic Host pre cloudové prostredia" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Obraz qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Toto je obraz Fedory %(rel)s Cloud Atomic Host vo formáte Qcow2 vhodný pre " -"OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bitový obraz Qcow2 (%sMB)" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Surový obraz" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Toto je obraz Fedory %(rel)s Cloud Atomic Host vo formáte komprimovaného " -"surového obrazu. Ak si nie ste istí, ktorý obraz použiť, skúste tento." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bitový surový obraz komprimovaný xz (%sMB)" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Ďalšie stiahnutia" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host obraz ISO (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Kontajnerový obraz (%sMB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Vyskúšajte predčasnú verziu" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Pracujeme na novom vydaní." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Pomôžte nám pripraviť F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Stiahnuť obrazy F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Ako testovať predčasné verzie" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Zdroje" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Začíname" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Dokumentácia k Začíname používať Projekt Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Projekt" -" Atomic: Diskusná skupina" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Pripojte sa do diskusnej skupiny na atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Projekt Atomic: IRC chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Pripojte sa do chatu Projektu Atomic na kanáli #atomic " -"na irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Overiť" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Overte si stiahnutý obraz" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Stiahnuť Fedoru %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Toto sú najnovšie obrazy Fedory Atomic Host vytvorené " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Toto je predčasné vydanie, ktoré podporuje pracovná" -" skupina Atomic. Svoje dotazy smerujte na ich diskusnú skupinu alebo %(team_irc)s na freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Všetky problémy alebo chyby by ste mali nahlasovať cez Red " -"Hat Bugzillu. Projekt Fedora neposkytuje žiadne záruky pokiaľ ide o " -"vhodnosť alebo užitočnosť." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s štandardný Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant boxy pre Fedoru Atomic Host sú dostupné pre VirtualBox a Libvirt. " -"Fedoru Atomic Host môžete spustiť vo vagrante stiahnutím obrazov z Fedory, " -"alebo pomocou vagrant nástrojov stiahnuť obrazy z Atlasu " -"HashiCorp." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Toto je obraz Fedory %(rel)s %(state)s Cloud Atomic Host vo formáte Qcow2 " -"vhodný pre OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Toto je obraz Fedory %(rel)s %(state)s Cloud Atomic Host vo formáte " -"komprimovaného surového obrazu. Ak si nie ste istí, ktorý obraz použiť, " -"skúste tento." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projekt Fedora - Stránka nenájdená" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Stránka nenájdená" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Ospravedlňujeme sa, ale súbor alebo stránku o ktorú ste žiadali nebolo možné" -" nájsť." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Nápady na riešenie problémov" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "Prekontrolujte URL, ak ste ju písali ručne. Opísali ste ju správne?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Chybný odkaz? Kontaktujte správcu webových stránok a " -"vysvetlite mu, pomocou ktorého odkazu ste sa sem dostali." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Stránka alebo súbor bol presunutý. Skontrolujte hlavnú " -"stránku alebo prehľadajte wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Podpisové kľúče balíčkov" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Táto stránka uvádza zoznam verejných kľúčov GPG používaných pre podpisovanie" -" balíčkov vo Fedore." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Zistite, ako vás chráni Fedora." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora používa podpisovanie balíčkov pomocou GPG, aby zaistila, že nebola " -"ohrozená integrita balíčkov." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Ďalšie informácie nájdete v často kladených otázkach »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Kľúče používané v súčasnosti" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primárny" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekundárny" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Hľadáte zastarané kľúče?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Zastarané podpisové kľúče balíčkov" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Táto stránka uvádza zoznam verejných kľúčov GPG, ktoré sa už viac " -"nepoužívajú pre podpisovanie balíčkov vo Fedore." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Zastarané a nepoužívané kľúče" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Kľúč GPG Fedory" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Balíky na inštalačnom médiu sú podpísané týmto kľúčom. Príslušné dnf " -"repozitáre sú fedora, fedora-updates pre " -"Fedora 7 až 9, a core a core-updates pre " -"Fedora Core (verziu 6 a skoršie). Pozrite http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html pre informáciu, prečo je tento " -"kľúč zastaralý." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testovacia" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora testovacia" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Ak sa zapájate do testovania balíkov, toto je kľúč, ktorým budete overovať " -"testovacie aktualizácie. Týmto kľúčom sú podpísané balíky v repozitári " -"fedora-testing. Pozrite http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html pre informáciu, prečo je tento " -"kľúč zastaralý." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testovacia" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testovacia" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Ak používate Fedora Extras s Fedora Core 6, použite tento kľúč s repozitárom" -" extras. Tento kľúč sa prestane používať po skončení " -"podpory Fedora Core 6 a Extras (7. decembra 2007). Tento kľúč nie je v " -"balíku fedora-release vo Fedora 7 a neskorších vydaniach." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Tento kľúč používali balíky vydané projektom Fedora Legacy na aktualizáciu " -"vydaní, ktorých oficiálna doba podpory skončila. Projekt Fedora Legacy už " -"neexistuje, takže týmto kľúčom sa už nebudú podpisovať žiadne balíky. Tento " -"kľúč nie je v balíku fedora-release vo Fedora 7 a " -"neskorších vydaniach." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Často kladené otázky o podpisovaní balíčkov" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Zistite, ako Fedora používa GPG na podpisovanie balíčkov kvôli zaisteniu " -"vašej bezpečnosti." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Ako projekt Fedora používa GPG kľúče na podpisovanie balíkov?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Každý stablilný RPM balík, ktorý je vydaný projektom Fedora obsahuje GPG " -"podpis. Dnf a grafické nástroje na aktualizáciu balíkov vo svojej " -"predvolenej konfigurácií kontrolujú tieto podpisy a odmietnu nainštalovať " -"balíky, ktorým podpisy chýbajú, alebo sú nesprávne. Pred inštaláciou balíka " -"by ste mali podpis vždy overiť. Tieto podpisy zaručujú, že obsah na žiadnom " -"mirrore poskytujúcom balíky (zrkadle) vydaný projektom Fedora nebol " -"pozmenený (či už v dôsledku chyby, alebo úmyselne)." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Balíky, ktoré sa dajú stiahnuť z buildsystému koji, neobsahujú podpisy, " -"takže by ste pri ich používaní mali zvýšiť ostražitosť. Podobne, ani " -"testovacie verzie balíkov v Rawhide (Fedora development) nemusia byť " -"podpísané." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Import kľúčov" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Kľúče sú obsiahnuté v balíku fedora-release, môžete ich " -"nájsť v priečinku /etc/pki/rpm-gpg. Povšimnite si, že nie " -"všetky z nich sú používané projektom Fedora -- niektorými sa podpisujú " -"balíky z Red Hat Enterprise Linux, alebo sa už vôbec nepoužívajú. Ak " -"používate balíky z Red Hat Enterprise Linux, pozrite sa na https://www.redhat.com/security/team/key. Kľúče používané " -"projektom Fedora sú povolené v dnf repozitári, takže ich väčšinou nemusíte " -"do databázy rpm importovať ručne." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Okrem balíčka fedora-release a tejto web stránky si môžete Fedora kľúče " -"stiahnuť aj zo servera s verejnými kľúčmi, ako napr. keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Pre niektoré repozitáre, ako repozitáre so stabilnými či testovacími " -"balíkami pre stabilné vydania, dnf vo svojej predvolenej " -"konfigurácií nájde správne kľúče a vyžiada si potvrdenie ich importu, ak " -"kľúč ešte nie je importovaný do rpm databázy." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Kedykoľvek môžete kľúč do RPM databázy pridať ručne, použitím nasledujúceho " -"príkazu:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Viac informácií nájdete v manuáli k rpm." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Ak si chcete overiť, že nainštalované kľúče sa zhodujú s tými, ktoré sú tu " -"uvedené, môžete použiť GnuPG a skontrolovať, či sa zhodujú fingerprinty " -"(odtlačky) kľúčov. Napríklad takto:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Získajte Fedoru Server: najnovšie technológie pre vaše aplikácie a služby" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server je serverový operačný systém podporovaný komunitou s krátkym " -"životným cyklom. Umožňuje skúseným správcom, ktorí majú skúsenosti s " -"akýmkoľvek OS, používať najnovšie technológie dostupné v open-source " -"komunite." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Jednoduchá správa" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Spravujte svoj systém jednoducho pomocou výkonného a moderného rozhrania " -"Cockpit. Zobrazujte, monitorujte výkon a stav systému, nasadzujte a " -"spravujte služby založené na kontajneroch." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Databázové služby" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server prináša zo sebou pokročilý, škálovateľný databázový server " -"poháňaný open-source projektom PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Kompletné riešenie podnikovej domény" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Zvýšte úroveň svojej linuxovej siete pokročilou správou identít, DNS, " -"certifikačnými službami, integráciou s doménou Windows(TM) v celom svojom " -"prostredí pomocou FreeIPA - open-source radič domény." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Pripravený vyskúšať Fedoru Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Stiahnuť Fedoru Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Stiahnuť Fedoru %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bitový inštalačný obraz (%sGB)" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Inštalačný obraz Fedory Server umožňuje vytvoriť pre váš počítač médium, " -"ktoré spustí inštalátor a priamo nainštaluje Fedoru Server na váš pevný " -"disk." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Ak chcete použiť tento obraz, potrebujete mechaniku, ktorá umožňuje vytvoriť" -" alebo \"vypáliť\" DVD, prípadne USB kľúč o minimálnej kapacite ako je " -"veľkosť obrazu." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Obraz pre sieťovú inštaláciu:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bitový obraz (%sMB)" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Stiahnuť obrazy F%(rel)s Alfa" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Stiahnuť obrazy F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Získajte viac možností Fedory" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® technológie" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Ako zmením Live obraz na spustiteľné médium?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Po stiahnutí obrazu z neho vytvorte spustiteľné médium. Buď vypáľte obraz na prázdny disk DVD, alebo zapíšte obraz na USB kľúč." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Ako zavediem systém z média?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Prečítajte si systémovú dokumentáciu k svojmu počítaču, kde by mal byť " -"postup, ako zaviesť systém z iného média než je vstavaný pevný disk. Postup " -"sa môže líšiť v závislosti od výrobcu a modelu počítača. Tieto " -"bežné tipy vám môžu pomôcť." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Stiahnuť Fedoru %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Stiahnuť Fedoru %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bitový inštalačný obraz (%sGB)" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Toto je predčasné vydanie, ktoré podporuje pracovná" -" skupina Server. Svoje dotazy smerujte na ich diskusnú skupinu alebo %(team_irc)s na freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Prečítajte si Poznámky k vydaniu pre viac " -"informácií o zmenách a nových vlastnostiach, a stránku Bežné chyby pre informácie o bežne sa " -"vyskytujúcich chybách a ako sa im vyhnúť." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Kedy bude vydaná Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Prečítajte si všetky kľúčové míľniky plánu vydania..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Po stiahnutí obrazu si ho overte kvôli bezpečnosti a integrite. Aby ste " -"stiahnutý obraz overili, najskôr si stiahnite nižšie uvedený súbor CHECKSUM " -"do toho istého adresára, kde ste stiahli obraz a riaďte sa týmito inštrukciami." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "Získajte Fedoru Workstation: najlepší OS pre vývojárov softvéru" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" -"Toto je pracovná stanica založená na systéme Linux, na ktorú ste čakali." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation je spoľahlivý, používateľsky prívetivý a výkonný operačný" -" systém pre notebooky a stolné počítače. Podporuje širokú škálu vývojárov od" -" nadšencov a študentov až po profesionálov v podnikových prostrediach." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“Veľké množstvo nástrojov dostupných
vo Fedore mi umožňuje dokončiť " -"moje pracovné úlohy.
Jednoducho funguje.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "inžinierka výkonu JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Uhladené používateľské rozhranie" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Zamerajte sa na svoj kód v pracovnom prostredí GNOME 3. GNOME je vytvorené " -"na základe spätnej väzby od vývojárov a minimalizuje rozptyľovanie, takže sa" -" môžete koncentrovať na to, čo je dôležité." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Kompletná sada open-source nástrojov" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Preskočte zdĺhavé hľadanie a kompilovanie potrebných nástrojov. S kompletnou" -" sadou open-source jazykov a nástrojov máte vo Fedore všetko dostupné na pár" -" klikov alebo cez príkazový riadok. Dokonca existuje i hosting projektov a " -"repozitárov ako napr. COPR, ktorý umožňuje rýchlo sprístupniť váš kód a " -"buildy komunite." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxy a ďalšie virtualizačné nástroje" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Pomocou GNOME Boxy môžete rýchlo sprevádzkovať virtuálne počítače, aby ste " -"otestovali svoj kód na viacerých platformách. Ak potrebujete ešte väčšiu " -"kontrolu, využite výkonné a skriptovateľné virtualizačné nástroje." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Vstavaná podpora Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Umiestnite svoje vlastné aplikácie do kontajnerov, alebo nasaďte tieto " -"aplikácie priamo na Fedore použitím najnovších technológií, ako je Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Pripravený vyskúšať Fedoru Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Stiahnuť Fedoru Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Stiahnuť Fedoru %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Fedora Media Writer pre Mac OS X (%s MB)" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bitový obraz ISO pre Linux (%s GB)." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Fedora Media Writer pre Windows (%s MB)" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Stiahnite si Fedora Media Writer pre svoj operačný systém." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Potrebujete inštrukcie? Alebo inú verziu?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Spustenie Fedory Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Pre spustenie Fedory Workstation budete potrebovať:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (stiahnuť môžete nižšie)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "USB kľúč alebo disk s dostupným miestom najmenej %s GB" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Fedoru Workstation môžete nainštalovať na notebook alebo počítač, ktorý má " -"aspoň 1 GHz procesor, 1 GB RAM a 10 GB dostupného priestoru. Ak tak chcete " -"urobiť, spustite live verziu Fedory Workstation zo svojho USB disku na " -"počítači, na ktorý ju chcete nainštalovať. Potom spustite aplikáciu Fedora " -"Media Writer a na dokončenie inštalácie postupujte podľa pokynov na " -"obrazovke." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Podporované platformy" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer podporuje nasledujúce platformy:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Automaticky sme zistili, že používate Mac OS X a vybrali " -"sme túto verziu na stiahnutie. Ak sme vás operačný systém zistili nesprávne," -" alebo chcete stiahnuť inú verziu, kliknite na odkaz \"Zobraziť stiahnutia " -"pre všetky platformy\"." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Automaticky sme zistili, že používate Linux a vybrali sme " -"túto verziu na stiahnutie. Ak sme vás operačný systém zistili nesprávne, " -"alebo chcete stiahnuť inú verziu, kliknite na odkaz \"Zobraziť stiahnutia " -"pre všetky platformy\"." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Automaticky sme zistili, že používate Windows a vybrali sme" -" túto verziu na stiahnutie. Ak sme vás operačný systém zistili nesprávne, " -"alebo chcete stiahnuť inú verziu, kliknite na odkaz \"Zobraziť stiahnutia " -"pre všetky platformy\"." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Zobraziť stiahnutia pre všetky platformy" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Pre Fedoru dostupný pomocou DNF" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Ďalšie detaily" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Ako použiť toto ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Overte si stiahnutý obraz" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bitový Live obraz (%sGB)" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bitový Live obraz (%sGB)" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Obrazy pre sieťovú inštaláciu:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bitový obraz (%sMB)" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Vyskúšajte Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-bitový obraz Atomic (%sGB)" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Zistite viac" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Oznámenie o vydaní" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Prečítajte si úplné oznámenie o vydaní v časopise Fedora." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Poznámky k vydaniu" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Zistite viac o zmenách od poslednej verzie Fedory ako aj minimálnych " -"požiadavkách a odporúčaniach pre spustenie Fedory." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Inštalačná príručka" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Pred inštaláciou odporúčame, aby ste si ju prezreli, pretože obsahuje " -"odpovede na veľa bežných otázok." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Bežné chyby" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Vynikajúci zdroj informácii v prípade akýchkoľvek problémov s inštaláciou " -"alebo spustením Fedory." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Čo znamená \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer vytvorí kompletnú, bežiacu verziu Fedory Workstation, " -"ktorú môžete spustiť priamo z USB disku. Live obraz môžete použiť na " -"testovanie a hranie sa s Fedorou bez vykonania zmien na vašom pevnom disku." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Ak budete pripravený, môžete nainštalovať Fedoru na svoj pevný disk priamo z" -" tejto \"live\" verzie Fedory Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora spiny" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Stiahnuť Fedoru Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Stiahnuť Fedoru %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Toto je predčasné vydanie, ktoré podporuje pracovná" -" skupina Workstation. Svoje dotazy smerujte na ich diskusnú skupinu alebo %(team_irc)s na freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Spustenie predčasnej verzie Fedory Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Pre spustenie predčasnej verzie Fedory Workstation budete potrebovať:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Stiahnuť môžete nižšie)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Live obraz ISO predčasnej verzie Fedory, ktorú chcete " -"spustiť" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"VAROVANIE: Táto procedúra vymaže všetky údaje na vašom USB disku. Uistite " -"sa, že ste si odzálohovali všetky dôležité súbory zo svojho USB disku " -"predtým, ako budete pokračovať." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Stiahnite si aplikáciu Fedora Media Writer." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Stiahnite si požadovaný obraz ISO." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Otvorte aplikáciu Fedore Media Writer. Možno budete musieť zadať heslo, aby " -"aplikácia získala potrebné oprávnenia." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Zo zoznamu vyberte \"Vlastný obraz\"." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Na stránke Vlastný obraz kliknite na tlačidlo \"Vybrať Live ISO\"" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "V okne pre výber súborov vyhľadajte a vyberte stiahnutý obraz ISO." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Do počítača vložte svoj USB kľúč. Ak ste predtým svoj USB kľúč použili na " -"vytvorenie live média, bude ho možno potrebné obnoviť do výrobných " -"nastavení. V takomto prípade sa vás aplikácia opýta, či tak chcete urobiť." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Pre zapísanie obrazu vyberte \"Vytvoriť Live USB\". Pred odpojením média " -"počkajte na dokončenie procesu a zavrite aplikáciu." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Ako testovať predčasné verzie" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Wiki príručka Fedory o tom, ako pomôcť s testovaním predčasných verzií " -"Fedory." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Architektúra" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Koreňové úložisko" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Spustiť inštanciu AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Vyberte najbližší región" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Spustiť!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Exportné smernice" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Prečítajte si úplné exportné smernice" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Kliknutím a stiahnutím Fedory súhlasíte s nasledujúcimi podmienkami a " -"požiadavkami." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Prečítajte si viac >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Informácie o" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "O Fedore" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponzori" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Časopis Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Právne poznámky" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Stiahnuť Fedoru Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Stiahnuť Fedoru Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Stiahnuť Fedoru Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternatívne stiahnutia" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Podpora" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Získajte pomoc" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Spýtajte sa Fedory" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Bežné chyby" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portál Fedory pre vývojárov" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Inštalačná príručka" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Pridajte sa" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Pridajte sa k Fedore" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planéta Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGy" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Systém účtov Fedory" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Komunita Fedory" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora je sponzorovaná firmou Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Zistite viac o vzťahu medzi firmou Red Hat a Fedorou »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. a ďalší." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Akékoľvek pripomienky a opravy pošlite tímu webových stránok." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Zmeniť jazyk" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Ok" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Viac možností \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Zoštíhlená. Výkonná. Pripravená pre každý cloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Najnovšie technológie. Stabilný základ. Všetko pre vaše aplikácie a služby." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentácia a ďalšie zdroje" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Pred inštaláciou Fedory by ste sa mali uistiť, či vás systém spĺňa minimálne" -" požiadavky. Minimálne požiadavky a odporúčania nájdete v poznámkach k vydaniu." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"K dispozícii je tiež kompletná inštalačná " -"príručka. Pred inštaláciou odporúčame, aby ste si ju prezreli, pretože " -"obsahuje odpovede na veľa bežných otázok." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Ďalšie spôsoby získania médií" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Inštalačné médiá Fedory si môžete zakúpiť od online " -"predajcov alebo lokálnych predajcov vo svojej " -"oblasti." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Nemôžete si dovoliť inštalačné médium? Požiadajte o to program Fedora médium zadarmo." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Informácie o kľúči GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID kľúča" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Odtlačok" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Získajte ho z:" diff --git a/getfedora.org/po/sl.po b/getfedora.org/po/sl.po deleted file mode 100644 index 0b8cbfc..0000000 --- a/getfedora.org/po/sl.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Slovenian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/sq.po b/getfedora.org/po/sq.po deleted file mode 100644 index 8419775..0000000 --- a/getfedora.org/po/sq.po +++ /dev/null @@ -1,2743 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Copyright (C) 2015 ORGANIZATION -# Besnik , 2015. #zanata -# Anxhelo Lushka , 2016. #zanata -# Besnik , 2016. #zanata -# Enea Jahollari , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-04-02 05:50-0400\n" -"Last-Translator: Enea Jahollari \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" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Kodi i Sjelljes Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Kodi i Sjelljes te Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Silluni si anëtar i një bashkësie, ndiqni Kodin e Sjelljes." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Kodi i Sjelljes" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Bashkësia Fedora përbëhet nga një larmi profesionistësh dhe vullnetarësh nga" -" e gjithë bota, që merren me çdo aspekt të shpërndarjes, nga programimi deri" -" te marketingu. Larmia është një nga forcat tonë më të mëdha, por ajo mund " -"të shpjerë edhe në probleme komunikimi dhe hidhërime. Për t’i dhënë fund " -"këtyre, kemi disa rregulla bazë të cilat kërkojmë që njerëzit t’i zbatojnë " -"kur përdorin burime të projektit." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Kjo nuk është një listë shteruese e gjërave që nuk mund të kryeni. Më mirë " -"merreni ashtu siç është menduar - një udhërrëfyes për të na e bërë të lehtë " -"të jemi të shkëlqyer me njëri-tjetrin." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Jini i matur. Puna juaj do të përdoret nga të tjerët, dhe vetë ju do të " -"vareni nga puna e dikujt tjetri. Çdo vendim që merrni do të prekë përdorues " -"dhe kolegë, dhe, kur merrni vendime, do të duhej t’i merrnit parasysh " -"pasojat." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Respektoni të tjerët. Jo të gjithë biem dakord kurdoherë, por " -"mosmarrëveshjet s’janë justifikim për sjellje të dobët dhe sjellje të liga. " -"Të gjithë mund të përjetojmë kokëçarje kohë pas kohe, por s’mund të lejojmë " -"që kokëçarjet të kthehen në sulme personale. Është e rëndësishme të mbahet " -"mend se një bashkësi në të cilën njerëzit s’ndjehen rehat, apo ndihen të " -"kërcënuar, nuk jep fryte. Anëtarët e bashkësisë Fedora duhet të kenë " -"parasysh respektin, kur kanë të bëjnë me kontribues të tjerë apo me persona " -"jashtë bashkësisë Fedora dhe përdorues të Fedora-s." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Kur nuk biem dakord, përpiqemi të kuptojmë pse. Mospajtime, si shoqërore, " -"ashtu edhe teknike, ndodhin tërë kohën dhe Fedora nuk bën përjashtim. Është " -"e rëndësishme t’i zgjidhim mospajtimet dhe pikëpamjet jo të njëjta në mënyrë" -" konstruktive." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Mos harroni që jemi të gjithë të ndryshëm. Fuqia e Fedora-s rrjedh prej " -"bashkësisë së vet të larmishme, njerëz nga një gamë e gjerë profilesh. " -"Njerëz të ndryshëm kanë këndvështrime të ndryshme mbi problemet. Të mos jesh" -" i zoti të kuptosh pse dikush ka një pikëpamje, nuk do të thotë që ai e ka " -"gabim. Mos harroni se gabimet janë njerëzore dhe se duke bërë fajtor njëri-" -"tjetrin nuk shkohet gjëkundi; më mirë ofroni ndihmë të zgjidhen problemet " -"dhe ndihmoni të tjerët të vënë mend nga gabimet." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Zgjidhni Lirinë. Zgjidhni Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Më pak rregullim, më tepër risi. Zgjidhni një variacion të Fedora-s
" -"
që iu përshtatet nevojave tuaja, dhe filloni ta përdorni pa humbur " -"kohë." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"U hodh në qarkullim Fedora %(rel)s %(state)s! Testojeni te " -"ndarja Shkarkime." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "U hodh në qarkullim Fedora %(rel)s! Shikojeni te ndarja Shkarkime." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Kompjuter" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Shkarko tani" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation është një sistem operativ i përimtuar, i lehtë për t’u " -"përdorur, për kompjuter laptop dhe desktop, me një grup të plotë mjetesh për" -" programuesit dhe krijuesit gjithfarësh." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Shkarkojeni tani" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Shërbyes" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server është një sistem i fuqishëm, i zhdërvjellët, që përfshin " -"teknologjitë \"qendër të dhënash\" më të mira dhe më të reja. Ju vë juve në " -"kontroll të krejt infrastrukturës dhe shërbimeve tuaja." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic është platforma më e mirë për grupin e programeve Linux-" -"Docker-Kubernetes (LDK)" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora është përherë e lirë për t’u përdorur, ndryshuar, dhe përhapur nga " -"kushdo. Është ndërtuar dhe përdorur nga njerëz anembanë botës, të cilët " -"punojnë tok si një bashkësi: Projekti Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Dëshironi më tepër mundësi Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Bashkësia Fedora hedh në qarkullim edhe pamje për ARM, Degë Live " -"alternative, dhe të tjera variacioni të Fedora-s të prodhuara për nevoja të " -"veçanta. Shfletojini te sajtet Degëzimet Fedora ose sajti Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Mbani lidhje dhe jini i informuar." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Doni të përfshiheni? Të " -"shihni se ku janë punët te bashkësia? Lexoni " -"lajmet më të reja dhe gjëra të tjera të lezetshme te Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Lexoni dokumentimin." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Për të dhëna të hollësishme mbi versionin e tanishëm, shihni Shënime " -"Versioni. Që të mësoni më tepër se si të përdoret Fedora, dhe hollësi të " -"tilla si domosdoshmëri sistemi, shihni dokumentimin " -"zyrtar." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Merrni ndihmë." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Ju duhet ca ndihmë me Fedora-n? Shihni te Pyetni " -"Fedora-n, prej nga mund të lexoni arkivat e pyetjeve të bëra nga " -"përdoruesit, ose mund të bëni pyetjen tuaj." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Sponsorë të Fedora-s" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Projekti Fedora është krenar të ketë sponsorë të tij organizmat vijues..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Sponsor Parësorë" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. është sponsori parësor i Projektit Fedora. " -"Red Hat-i e furnizon projektin Fedora me një larmi të gjerë burimesh dhe " -"mjetesh, përfshi asistencë nga të punësuar të rregullt, hardware dhe " -"bandwidth për infrastrukturën, financim veprimtarish, dhe këshillim ligjor." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Projekti Fedora u është po ashtu mirënjohës sponsorëve vijues për përkrahjen" -" e rëndësishme që kanë dhënë:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "I interesuar për sponsorizim të diçkaje për Fedora-n?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Lidhuni me admin@fedoraproject.org ose hidhuni " -"një herë nga #fedora-admin te " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifikoni Pamjen e Shkarkimit tuaj" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Udhëzime rreth CHECKSUM-it dhe Verifikimeve" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Si ta verifikoj pamjen time?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Pasi të keni shkarkuar një pamje, verifikojeni për sigurinë dhe " -"pacenueshmërinë. Për të verifikuar pamjen tuaj, fillojani duke shkarkuar " -"kartelën e duhur CHECKSUM te e njëjta drejtori ku shkarkuat kartelën tuaj." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Për pamje 64-bitëshe" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Për pamje 32-bitëshe" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Për Atomic Host Iso" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Për pamje Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Më pas, importoni kyçin(et) GPG të Fedora-s:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Hollësitë e kyçit/kyçeve GPG mund t’i verifikoni këtu." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Tani verifikoni që kartela CHECKSUM është e vlefshme:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Kartela CHECKSUM duhet të ketë nënshkrim të vlefshëm prej një nga kyçet " -"vijues:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Arkitektura dytësore për Fedora 26 (AArch64, PPC64, PPC64le, s390 dhe s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Së fundi, tani që kartela CHECKSUM është verifikuar, kontrolloni nëse " -"përputhet me checksum-in e pamjes:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Nëse nga përfundimi pohohet se kartela është e vlefshme, jeni gati ta " -"përdorni!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Si ta verifikoj në një sistem tjetër operativ pamjen e shkarkuar?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Vendosni dhe shkallëzoni aplikacionet tuaja me infrastrukturë të " -"pandryshueshme." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"\"Ne vendosëm të përdorim Fedora Atomic si bazë për Nismën tonë Navops - " -"grumbullin Kubernetes duke dhënë zgjidhje sepse klientët tanë besojnë dhe " -"përdorin sistemet e operimit të Red Hat. Ne e dashurojmë aspektin e " -"pandryshueshëm të Fedora Atomic i cili është perfekt për mjedise të " -"kontejnerizuara.\"" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Kryetari Arkitekt, Navops nga Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host nga Projekti Atomic është një platform me peshë të lehtë dhe e " -"pandryshueshme e konceptuar me qëllim të vetëm xhirimin e aplikacioneve të " -"kontejnerizuara." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Versioni i Fedora-s i Atomic Host përdor të njëjtën depo paketash si Fedora " -"Server, dhe ju furnizon me versionet më të fundit të Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Përditësimet e Ostree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Përditësoni automatikisht sistemin tuaj nga rrjedha e sipërme e OStree. " -"Bëjini servervat tuaj identik dhe kthejini pas lehtësisht nëse ka ndonjë " -"problem gjatë përmirësimit." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Menaxhoni kontejnerët e Docker, kontejnerët e sistemit, aplikacionet Atomic," -" dhe më shumë duke përdorur vetëm një command-line të përshtatshëm." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimizuar për Kubernetes dhe Openshift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Jeni duke ndërtuar një grumbull me Kubernetes ose Origin për të xhiruar " -"aplikacionet tuaja të kontejnerizuara? Xhirojeni atë në Fedora Atomic, e " -"cila ju siguron juve platformën që ju nevojitet në një sistem operimi të " -"vogël dhe të pakët." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Jeni gati për të provuar Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Faleminderit që Shkarkuat Fedora-n!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Shkarkimi juaj do të duhej të fillonte brenda pak sekondash. Në mos, klikoni" -" lidhjen më poshtë:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifikoni Shkarkimin tuaj!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Pasi të keni shkarkuar një pamje, verifikojini sigurinë dhe pacenueshmërinë." -" Që të verifikoni pamjen tuaj, fillojani duke shkarkuar, te e njëjta " -"drejtori me pamjen që shkarkuat, kartelën e duhur CHECKSUM dhe ndiqni këto udhëzime." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Shkarkoni Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Shkarkoni Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host ndërtohet çdo 2 javë ose më shumë. " - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Montimi i dy javëve të fundit nuk e përmbushi kriterin tonë të testimeve. " -"Pamjet e gatshme janë prej më shumë se %(atomic_age)s ditësh. Shihni blogun " -"e projektit Project Atomic për përditësime dhe të dhëna rreth të metash " -"bllokuese për Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Këto janë pamjet më të reja zyrtare Fedora Atomic Host, të prodhuara " -"%(atomic_age)s ditë më parë." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Pamje Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Formati GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "AMI GP2 HVM" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Mbylle" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Rajon" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "ID AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Nise" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "AMI HVM-sh Standarde" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Pamje Atomic Host për Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Pamje VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Nëse përdorni Vagrant nën Mac OS X ose Windows, ka gjasa që kjo të jetë " -"pamja që do t’ju bëjë punë." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Shkarkime" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "Pamje 64-bit %sMB VirtualBox Base për Vagrant" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Pamje libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Nëse po përdorni Vagrant në Fedora, kjo është pamja që do t’ju bëjë punë." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "Pamje 64-bit %sMB libvirt/KVM Base për Vagrant" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Pamje qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Kjo është Fedora %(rel)s Cloud Atomic Host si pamje e formatuar për Qcow2, " -"për t’u përdorur me OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "Pamje 64-bit %sMB Qcow2" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Pamje e Papërpunuar" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Kjo është Fedora %(rel)s Cloud Atomic Host, në format pamjeje të papërpunuar" -" të ngjeshur. Nëse jeni i pasigurt cilën të përdorni, provoni këtë." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "Pamje 64-bit %sMB e Ngjeshur Si xz" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Shkarkime të Tjera" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Provoni një paraprak" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Po merremi me hedhjen pasuese në qarkullim." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Ndihmonani ta bëjmë gati F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Si të provohen hedhjet paraprake në qarkullim" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Burime" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifikoje" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifikoni Figurën tuaj" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Tërë problemet ose të metat duhen njoftuar përmes Red Hat " -"Bugzilla. Projekti Fedora nuk jep garanci mbi përshtatshmërinë apo " -"dobishmërinë e tij." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Projekti Fedora - Faqe Që S’gjendet" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Faqe Që S’gjendet" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Na ndjeni, por kartela apo faqja që kërkuat nuk gjendet dot." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ide Diagnostikimi" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Kontrollojeni edhe një herë URL-në, në e paçi dhënë dorazi. A e kopjuat " -"saktë?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Lidhje e Gabuar? Lidhuni me përgjegjësin e sajtit dhe " -"shpjegojini se cila lidhje ju pruri këtu." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Faqja ose kartela mund të jetë lëvizur. Kontrolloni te sajti kryesor ose kërkoni te wiki jonë." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Kyçe Nënshkrimi Paketash" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Në këtë faqe radhiten kyçet publikë GPG të përdorur për nënshkrimin e " -"paketave në Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Mësoni se si ju mbron Fedora." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora përdor GPG-në për nënshkrim paketash, për të siguruar që paketat nuk " -"janë cenuar." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Lexoni FAQ që të mësoni më tepër »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Kyçe Në Përdorim" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Parësor" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Dytësore" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Mos po kërkonit për kyçe të vjetruar?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Kyçe Nënshkrimi Paketash të Vjetruar" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Në këtë faqe radhiten kyçet publikë GPG që nuk përdoren më për nënshkrim " -"paketash Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Kyçe të Vjetruar dhe të Papërdorur" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Kyç GPG i Fedora-s" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Paketat në media instalimi nënshkruhen me këtë kyç. Depot dnf përkatëse janë" -" fedora, fedora-updates për Fedora 7-9, " -"dhe core dhe core-updates për Fedora Core " -"(Version 6 dhe më të hershëm). Për shpjegime se pse ky kyç është i vjetruar," -" shihni http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Testim Fedora >= 7" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Provë Fedora" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Nëse merrni pjesë në testim paketash, ky është kyçi që do të përdorni për " -"verifikimin e paketave të testimit. Me këtë kyç nënshkruhen paketat që " -"gjenden te depoja fedora-testing. Për shpjegime se ky kyç " -"është i vjetruar, shihni http://www.redhat.com/archives" -"/fedora-announce-list/2008-August/msg00012.html." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Testim Fedora 8-9" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Testim Fedora 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Ekstra Fedora" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Nëse përdorni Fedora Extras me Fedora Core 6, përdorni këtë paketë prej " -"depos extras. Ky kyç nuk do të përdoret më pasi Fedora " -"Core 6 dhe Extras të mbërrijnë EOL (7 Dhjetor, 2007). Ky kyç nuk përfshihet " -"te paketa fedora-release për Fedora 7 dhe versione të " -"mëtejshëm." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Të dikurshme" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Ky kyç ka qenë përdorur për paketa të hedhura në qarkullim nga projekti " -"Fedora Legacy për përditësim të hedhjeve në qarkullim që mbërrinin në EOL-in" -" e tyre zyrtar. Projekti Fedora Legacy nuk ekziston më, ndaj ky kyç nuk do " -"të përdoret më për nënshkrim paketash. Ky kyç nuk përfshihet te paketa " -"fedora-release për Fedora 7 dhe hedhje të mëvonshme në " -"qarkullim." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ mbi Nënshkrim Paketash" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Mësoni se si e përdor Fedora GPG-në për nënshkrim paketash që të sigurohet " -"pacenueshmëria e tyre." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Si i përdor Projekti Fedora kyçet GPG për nënshkrim paketash?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Çdo paketë e qëndrueshme RPM që hidhet në qarkullim nga Projekti Fedora " -"nënshkruhet me një nënshkrim GPG. Si parazgjedhje, dnf-ja dhe mjetet " -"grafike për përditësim do t’i verifikojnë këto nënshkrime dhe do të hedhin " -"poshtë instalimin e cilësdo paketë që s’është nënshkruar ose që ka nënshkrim" -" të dëmtuar. Është mirë që, para se ta instaloni, të verifikoni gjithmonë " -"nënshkrimin e një pakete. Këto nënshkrime garantojnë që paketat që " -"instaloni janë ashtu siç janë prodhuar nga Projekti Fedora dhe se s’janë " -"tjetërsuar (aksidentalisht ose qëllimisht) nga çfarëdo pasqyre apo sajti që " -"po ofron paketat." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Paketat që mund të shkarkohen nga sistemi Koji i montimeve nuk përmbajnë " -"nënshkrime, ndaj duhet t’i përdorni me kujdes. Në të njëjtën mënyrë, " -"paketat e fjalës së fundit, në Rawhide, nuk ka nevojë të nënshkruhen." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Po importohen kyçe" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Kyçet përfshihen te paketa fedora-release, mund t’i gjeni " -"te drejtoria /etc/pki/rpm-gpg. Ju lutemi, kini parasysh që" -" jo të gjithë kyçet në këtë drejtori përdoren nga projekti Fedora -- ca prej" -" tyre përdoren për nënshkrim të paketave për Red Hat Enterprise Linux ose " -"nuk përdoren më fare. Nëse përdorni paketa Red Hat Enterprise Linux, shihni " -"https://www.redhat.com/security/team/key. Kyçet e " -"përdorur nga Fedora janë të aktivizuar te formësimi i depos dnf, ndaj " -"përgjithësisht s’keni nevojë t’i importoni dorazi te baza e të dhënave për " -"rpm-në." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Përveç paketës fedora-release dhe kësaj faqeje web, kyçet Fedora mund t’i " -"shkarkoni nga një shërbyes publik kyçesh, i tillë si keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Për disa depo, të tilla si depot me paketa të qëndrueshme dhe paketa testimi" -" nën formësimin parazgjedhje, dnf-ja është në gjendje të " -"gjejë një kyç të vlefshëm për depon dhe t’i kërkojë përdoruesit ripohimin, " -"përpara importimit të kyçit, nëse kyçi s’gjendet tashmë i importuar në bazën" -" e të dhënave të rpm-ve." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Mundeni përherë të importoni dorazi një kyç te baza e të dhënave për RPM-të," -" përmes urdhrit vijues:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Për më tepër të dhëna, shihni doracakun për rpm-në." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Nëse doni të verifikoni që kyçet e instaluar në sistemin tuaj përputhen me " -"kyçet e radhitur këtu, mund të përdorni GnuPG që të shihni nëse gjurmët e " -"gishtave për kyçin përputhen. Për shembull:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Administrim i Lehtë" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Administroni sistemin tuaj me ndërfaqen e lehtë dhe moderne të Cockpit-it. " -"Shihni dhe mbikëqyrni punën dhe gjendjen e sistemit, dhe instaloni dhe " -"administroni shërbime me bazë kontejner." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Shërbime Bazash të Dhënash" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server sjell me vete një shërbyes baze të dhënash të shkallës " -"industriale, të përshkallëzueshëm, të bazuar në projektin me burim të hapur " -"PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Zgjidhje e Plotë, e Nivelit Industrial, për Përkatësitë" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Gati për një provë me Fedora Server-in?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Shkarkoni Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Shkarkoni Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "Pamje instalimi 64-Bit %sGB" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Pamja për instalim të Fedora Server-it ju lejon të krijoni për kompjuterin " -"tuaj media që bën nisjen e instaluesit për instalim të Fedora Server-it " -"drejt e te hard disku juaj" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Që të përdorni këtë pamje, ju duhet një pajisje që mund të krijojë ose " -"\"pjekë\" DVD, ose një diskth USB të paktën po aq të madh sa edhe pamja." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Pamje Netinstall:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "Pamje 64-bit %sMB" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Shkarkoni pamje F%(rel)s Alpha" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Shkarkoni pamje F%(rel)s Beta" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Merrni më tepër Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Teknologji ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Si ta shndërroj një pamje Live në një media të nisshme?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Pasi ta shkarkoni pamjen, prej saj do të krijoni një media të nisshme. Ose " -"hidheni pamjen në një DVD të zbrazët, ose hidheni pamjen te një diskth USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Si të bëj nisjen nga media?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Për procedura nisjeje nga tjetër media, veç hard diskut, shihni dokumentimin" -" e sistemit të kompjuterit tuaj. Procesi mund të jetë paksa i ndryshëm nga " -"kompjuteri në kompjuter, varet nga prodhuesi dhe modeli i kompjuterit tuaj. " -"Këto ndihmëza të rëndomta mund të jenë të dobishme." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Shkarkoni %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "Pamje instalimi 64-Bit %sGB" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ky është software para-qarkullim dhe mbulohet nga Grupi i Punës mbi Shërbyesit. Ju lutemi, pyetjet " -"bëjini te lista e tyre e postimeve ose te " -"%(team_irc)s në freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Për më tepër të dhëna mbi ndryshime dhe veçori të reja, lexoni Shënime Versioni, dhe faqen Të meta të Zakonshme për të dhëna mbi të " -"meta që hasen shpesh dhe se si të shmangen ato." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Kur do të hidhet në qarkullim Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" -"Shihini krejt versionet e rëndësishëm të planit të hedhjeve në qarkullim..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Pasi të keni shkarkuar një pamje, verifikojini sigurinë dhe pacenueshmërinë." -" Që të verifikoni pamjen tuaj, fillojani duke shkarkuar, te e njëjta " -"drejtori me pamjen që shkarkuat, kartelën e duhur CHECKSUM dhe ndiqni këto udhëzime." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Ky është sistemi Linux që keni pritur kaq kohë." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation është një sistem operativ i qëndrueshëm, i lehtë për " -"përdoruesin, dhe i fuqishëm, për kompjuter laptop ose desktop. Mbulon " -"nevojat për një gamë të gjerë zhvilluesish, prej atyre që e duan për hobi " -"dhe nxënësit, e deri te profesionistët në mjedise korporatash." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“Moria e mjeteve të furnizuara nga
Fedora më lejon të bëj punën " -"time.
Funksionon xham.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Inxhinier performance JVM-sh" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Ndërfaqe përdoruesi e hajthme" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Përqendrohuni te kodi juaj, që nga mjedisi GNOME 3 për desktop. GNOME është " -"krijuar duke pasqyruar edhe mendimet e programuesve, ndaj minimizon " -"shpërqendrimin, që kështu të merreni me atë çka është e rëndësishme." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Grup mjetesh i plotë, me burim të hapur" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Anashkaloni mërzinë e të kërkuarit ose ndërtimit të mjeteve që ju duhen. Me " -"grupin e plotë Fedora të gjuhëve, mjeteve dhe gjërave të dobishme me burim " -"të hapur, gjithçka e keni vetëm një klikim ose një rresht urdhrash larg. " -"Madje ka edhe strehim dhe depo projektesh, të tilla si COPR, për t’i ofruar " -"bashkësisë kodin dhe montimet tuaja pa humbur kohë." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes & dhe të tjera mjete virtualizimi" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Bëni gati dhe vini në punë shpejt e shpejt makina virtuale, për të testuar " -"kodin tuaj në platforma të ndryshme, përmes GNOME Boxes. Ose hyni më thellë," -" te mjete të fuqishme, të skriptueshme virtualizimi, për më tepër kontroll." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Mbulim i brendshëm për Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Kontejnerizojini aplikacionet tuaja, ose instaloni aplikacione të " -"kontejnerizuar drejt e te Fedora, duke përdorur teknologjinë më të fundit, " -"Docker, fjala vjen." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Gati për të bërë një provë me Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Shkarkoni Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Shkarkoni Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora Media Writer për Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "ISO 64-bit %s GB për Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora Media Writer për Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Shkarkojeni Fedora Media Writer për sistemin tuaj operativ." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Ju duhen udhëzime? Ose një version tjetër?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Një diskth USB Flash, me të paktën %s GB hapësirë të lirë" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Përndryshe, mund ta instaloni Fedora Workstation në një laptop ose desktop " -"që ka të paktën një procesor 1 GHz, 1 GB RAM, dhe 10 GB hapësirë të lirë. " -"Për ta bërë këtë, xhironi versionin Live të Fedora Workstation-it që nga " -"diskthi juaj USB te kompjuteri në të cilin dëshironi të instalohet, xhironi " -"aplikacionin Fedora Media Writer, dhe ndiqni hapat në ekran për të plotësuar" -" instalimin." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Platformat Që Mbulojmë" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer mbulon platformat vijuese:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "I passhëm përmes DNF-së për Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Më tepër hollësi" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Si të përdoret kjo ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifikoni këtë pamje" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "Pamje Live 64-Bit %sGB" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "Pamje Live 32-bit %sGB" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Pamje Netinstall:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "Pamje 32-bit %sMB" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Të meta të Zakonshme" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Një burim i shkëlqyer për ta konsultuar në rast se ndesheni me probleme " -"gjatë instalimit ose xhirimit të Fedora-s." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Ç’do të thotë \"Live\"?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer do të krijojë një sistem Fedora Workstation të plotë, që" -" mund ta xhironi drejt e nga diskthi juaj USB. Pmjen Live mund ta përdorni " -"për të provuar dhe për t’u marrë me Fedora-n pa bërë ndryshime te hard " -"disk-u juaj." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Kur të jeni gati, mund ta instaloni Fedora-n në hard disk-un tuaj që nga ky " -"version \"live\" i Fedora Workstation-it." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Degëzime Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Shkarkoni Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Shkarkoni Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ky është software para-qarkullim dhe mbulohet nga Grupi i Punës mbi Workstation. Ju lutemi, pyetjet " -"bëjini te lista e tyre e postimeve ose te " -"%(team_irc)s në freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Xhirimi i Versioneve Paraprake Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "Që të xhironi një version paraprak Fedora Workstation, do t’ju duhet:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (Shkarkime të gatshme më poshtë)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Një pamje ISO live e versionit hedhje paraprake në qarkullim " -"të Fedora-s që mund të donit ta xhironit" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"KUJDES: Kjo procedurë asgjëson krejt të dhënat në median tuaj USB. Përpara " -"se të kryeni këtë, sigurohuni se keni kopjeruajtur çfarëdo kartelash të " -"rëndësishme nga media juaj USB." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Shkarkoni nga më poshtë aplikacionin Fedora Media Writer." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Shkarkoni pamjen ISO të dëshiruar" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Hapni aplikacionin Fedora Media Writer. Mund t’ju duhet të jepni një " -"fjalëkalim që t’i jepni aplikacionit lejet e duhura." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Përzgjidhni nga lista \"OS Vetjak...\"." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Te faqja OS Vetjak, përzgjidhni butonin \"Përzgjidhni ISO Live\"." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Te dritarja e përzgjedhjes së kartelave, gjeni dhe përzgjidhni pamjen ISO që" -" shkarkuat." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Futeni diskthin tuaj USB te kompjuteri. Nëse e përdorët diskthin tuaj USB më" -" herët për të krijuar media live, mund të jetë e nevojshme ta " -"riktheni në gjendjen siç doli nga fabrika. Në rast se duhet, aplikacioni do" -" t’ju kërkojë ta bëni." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Përzgjidhni \"Krijo Live USB\" që të shkruhet pamja. Pritni deri sa të " -"përfundojë procesi, përpara se të hiqni diskthin dhe të mbyllni " -"aplikacionin." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Udhërrëfyes Fedora wiki mbi se si të ndihmohet në testimin e versioneve " -"paraqarkullim të Fedora-s." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arkitekturë" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Depo rrënje" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Nisni instancë AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Përzgjidhni zonën më të afërt" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Nise!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Rregulla Eksportimi" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Lexoni rregulloren e plotë të eksportit" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Duke klikuar dhe shkarkuar Fedora-n, shprehni miratimin tuaj për t’u pajtuar" -" me kushtet dhe termat vijuese." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Lexoni më tepër >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Rreth" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Rreth Fedora-s" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorë" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Revista Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Ligjore" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Merrni Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Merrni Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Asistencë" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Merrni Ndihmë" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Pyesni Fedora-n" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Të meta të Rëndomta" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Portali i Zhvilluesve të Fedora-s" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Udhërrëfyes Instalimi" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Bëhuni Pjesë" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Bëhuni Pjesë e Fedora-s" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planeti Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "GSI Fedora" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Sistemi i Llogarive Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Bashkësia Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora sponsorizohet nga Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Mësoni më tepër mbi marrëdhëniet mes Red Hat-it dhe Fedora »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. dhe të tjerë." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Ndërroni Gjuhën" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "I hajthëm. I fuqishëm. Gati për Everycloud." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Teknologjia më e re. Themele të qëndrueshme. Tok, për aplikacionet dhe " -"shërbimet tuaja." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentim dhe burime të tjera" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Mënyra të tjera për të marrë media" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Media instalimi të Fedora-s mund të blini nga tregtues në " -"Internet ose nga një tregtues vendor në zonën tuaj." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"S’e përballoni dot çmimin e medias? Kërkoni media instalimi Fedora prej Programit Media Fedora Falas." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Të dhëna Kyçi GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID Kyçi" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Shenja gishtash" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Merreni prej:" diff --git a/getfedora.org/po/sr.po b/getfedora.org/po/sr.po deleted file mode 100644 index 4937555..0000000 --- a/getfedora.org/po/sr.po +++ /dev/null @@ -1,2631 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Momcilo Medic , 2014 -# Momcilo Medic , 2015. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-09-24 06:53-0400\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" -"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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Правила понашања" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedorina правила понашања" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Понашајте се као члан заједнице, пратите Правила понашања." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Правила понашања" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora заједница је сачињена од мешавине професионалаца и волонтера са свих " -"страна света, који раде на сваком делу дистрибуције од програмирања до " -"маркетинга. Разноликост је једна од јачих страна, али такође може да доведе " -"до проблема у комуникацији и негодовања. За те сврхе, имамо неколико " -"основних правила које тражимо да људи поштују када користе ресурсе пројекта." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Ово није исцрпна листа ствари које не треба да радите. Уствари, усвојите дух" -" онога што је замисао - упутства како да лакше будете одлични једни према " -"другима." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Будите обзирни. Ваш рад ће користити други људи, и за узврат ви ћете " -"зависити од рада других. Свака одлука коју донесете ће утицати на кориснике " -"и колеге, и требало би да те последице узмете у обзир када доносите одлуке." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Имајте поштовања. Нећемо се сви увек слагати, али неслагање није изговор за " -"лоше понашање и лоше манире. Сви можемо бити фрустрирани понекада, али не " -"смемо дозволити тој фрустрацији да прерасте у лични напад. Важно је " -"запамтити да заједница у којој се људи осећају нелагодно или угрожено није " -"веома продуктивна. Чланови Fedora заједнице би требало да имају поштовања " -"при сусретима са осталим сарадницима као и са људима изван Fedora заједнице " -"и корисницима Fedore." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Када се не слажемо, покушавамо да разумемо зашто. Неслагања, друштвена и " -"техничка, се увек дешавају и Fedora није изузета. Важно је да разрешимо " -"неслагања и различита станишта конструктивно." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Запамтите да смо различити. Снага Fedore долази из разноликости заједнице, " -"људи са разноврсним искуствима. Различити људи имају различит поглед на " -"проблеме. Неразумевање за нечије станиште не значи да они греше. Немојте " -"заборавити да је људски грешити и сваљивање кривице не води ничему, уместо " -"тога понудите помоћ у разрешењу проблема и учењу из грешака." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation је исполиран, једноставан оперативни систем за лаптоп и " -"стоне рачунаре, са комплетним скупом алата за програмере и ствараоце свих " -"врста." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Преузмите сада" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server је моћан, прилагодљив оперативни систем који укључује најбоље " -"и најновије технологије за дата центре. Даје вам контролу над вашом " -"инфраструктуром и сервисима." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora је увек слободна за свакога да је користи, мења и дистрибуира. " -"Изграђена и коришћена од стране људи широм планете који раде као заједница: " -"Fedora пројекат." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora спонзори" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Fedora пројекат је поносна што има следеће организације као спонзоре..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Главни спонзор" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. је главни спонзор за Fedora пројекат. Red " -"Hat обезбеђује Fedora пројекту разноврсне ресурсе, укључујући подршку " -"запослених са пуним радним временом, хардверску инфраструктуру и проток, " -"финансирање догађаја и правно заступање." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Fedora пројекат је такође захвална следећим спонзорима за значајну подршку:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Заинтересовани сте да спонзоришете нешто у Fedori?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Контактирајте admin@fedoraproject.org или " -"свратите у #fedora-admin на " -"irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Проверите преузету слику" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM и упутства за проверу" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Како да проверим своју инсталациону слику?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Када сте преузели ISO слику, проверите га ради безбедности и интегритета. " -"Да бисте проверили своју ISO слику, почните са преузимањем исправне CHECKSUM" -" датотеке у исти директоријум где је и ISO слика." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "За 64-битне слике" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "За 32-битне слике" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Следеће, увезите Fedora GPG кључ(еве):" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "Можете проверити детаље GPG кључ(ева) овде." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Сада проверите да ли је датотека CHECKSUM исправна:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"Датотека CHECKSUM треба да има добар потпис са једним од следећих кључева:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Напокон, пошто сте проверили исправност CHECKSUM датотеке, проверите да се " -"контролна сума слике подудара са:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Ако излаз показује да је датотека исправна, онда је спремна за употребу!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Како да проверим преузету слику на другом оперативном систему?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Хвала што сте преузели Fedoru!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Преузимање ће започети кроз неколико секунди. Ако не, кликните линк испод:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Проверите преузето!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Када сте преузели ISO слику, проверите га ради безбедности и интегритета. " -"Да бисте проверили своју ISO слику, почните са преузимањем исправне CHECKSUM" -" датотеке у исти директоријум где је и ISO слика и пратите ова упутства." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI-ји" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Затвори" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Регија" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Покрени" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Уобичајени HVM AMI-ји" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox слика" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Ако користите Vagrant на Mac OS X или Windows-у, ово је вероватно слика коју" -" желите да употребите." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Преузимање" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-битна %sMB VirtualBox основна Vagrant слика" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM слика" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Ако користите Vagrant на Fedora, ово је слика коју желите употребити." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-битна %sMB libvirt/KVM основна Vagrant слика" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 слика" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Ово је Fedora %(rel)s Cloud Atomic Host у Qcow2-форматираној слици за " -"употребу са OpenStack-ом." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-битна %sMB Qcow2 слика" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw слика" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Ово је Fedora %(rel)s Cloud Atomic Host у сабијеном raw формату слике. Ако " -"нисте сигурни шта да употребите, пробајте ово." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-битна %sMB xz-компресована raw слика" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Остала преузимања" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Проверите вашу слику" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Сви проблеми или програмске грешке треба да буду пријављени на Red Hat Bugzilla-у. Fedora пројекат не пружа гаранцију на " -"прикладност и употребљивост." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Ово је Fedora %(rel)s %(state)s Cloud Atomic Host у сабијеном raw формату " -"слике. Ако нисте сигурни шта да употребите, пробајте ово." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora пројекат - Страница није пронађена" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Страница није пронађена" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" -"Извињавамо се, али датотеку или страницу коју сте захтевали нисмо могли " -"наћи." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Идеје за решавање проблема" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Проверите добро УРЛ ако сте га ручно унели. Да ли сте га исправно преписали?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Неисправна веза? Контактирајте администратора и објасните" -" која веза вас је довела овде." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Могуће је да је страница или датотека коју сте тражили померена. Проверите " -"главну страну или претражите наш wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Кључеви за потписивање пакета" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Ова страница садржи листу јавних GPG кључева у употреби при потписивању " -"пакета у Fedori." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Сазнајте како вас Fedora штити." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora користи GPG потписивање пакета да би осигурала интегритет пакета." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Прочитајте FAQ да сазнате више »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Кључеви који се тренутно користе" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Главни" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Секундарни" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Тражите застареле кључеве?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Застарели кључеви за потписивање пакета" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Ова страница садржи листу јавних GPG кључева који нису више у употреби при " -"потписивању пакета у Fedori." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Застарели и кључеви који нису у употреби" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG кључ" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Пакети на медијима за инсталацију су потписани овим кључем. Одговарајуће " -"dnf ризнице су fedora, fedora-updates за " -"системе Fedora 7-9, и core и core-updates " -"за Fedora Core (верзију 6 и раније). Погледајте http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html ради информација о разлогу " -"застаревања овог кључа." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 тестирање" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora тест" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Ако учествујете у тестирању пакета, ово је кључ који ћете користити да " -"проверите пробне пакете. Овај кључ потписује пакете који се налазе у " -"ризници fedora-testing. Погледајте http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html ради информација о разлогу " -"застаревања овог кључа." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 тестирање" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 тестирање" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora додаци" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Ако користите Fedora Extras са Fedora Core 6, користите овај пакет из " -"extras ризнице. Овај кључ више неће бити коришћен после 7." -" децембра 2007., када ће Fedora Core 6 и Extras достићи „крај живота“. Овај " -"кључ није укључен у пакет fedora-release у Fedora 7 и " -"каснијим издањима." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Стари" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Овај кључ је коришћен за пакете који су издати од стране Fedora Legacy " -"пројекта да бисте ажурирали издања која су званично дошла до „краја живота“." -" Fedora Legacy пројекат више не постоји, тако да овај кључ више неће бити " -"коришћен за потписивање пакета. Овај кључ није укључен у пакет fedora-release у Fedora 7 и каснијим издањима." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "FAQ за потписивање пакета" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Сазнајте како Fedora користи GPG да потпише пакете да би осигурала вашу " -"безбедност." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Како Fedora пројекат користи GPG кључеве да потпише пакете?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Сваки стабилни RPM пакет којег Fedora пројекат издаје је потписан са GPG " -"потписом. Подразумевано, dnf и графичке алатке за ажурирање ће проверити ове" -" потписе и одбити инсталацију свих пакета који нису потписани или имају лоше" -" потписе. Увек треба да проверите потпис пакета пре инсталације. Ови " -"потписи осигуравају да је Fedora пројекат направио пакете које инсталирате и" -" да их одраз или веб место које их пружа није променило (било случајно или " -"из злобе)." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Пакети који се могу преузети са Koji система за изградњу не садрже потписе, " -"зато их треба користити са пажњом. Такође, развојни пакети у Rawhide " -"ризници нису нужно потписани." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Увоз кључева" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Кључеви су укључени у пакету fedora-release, а можете их " -"наћи у директоријуму /etc/pki/rpm-gpg. Примите к знању да " -"Fedora пројекат не користи све кључеве који се налазе у овом директоријуму —" -" поједини се користе за потписивање Red Hat Enterprise Linux пакета, док се " -"други уопште и не користе. Ако користите Red Hat Enterprise Linux пакете, " -"погледајте https://www.redhat.com/security/team/key. " -"Кључеви које Fedora користи су омогућени у подешавањима dnf ризнице, тако да" -" их углавном не морате ручно увозити у rpm базу података." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Осим пакета fedora-release и ове веб странице, можете преузети кључеве " -"Fedora система са сервера за јавне кључеве, попут keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"За поједине ризнице, попут ризница са стабилним и пробним пакетима у " -"подразумеваној поставци, dnf је у стању да нађе прави кључ " -"за ризницу и упита корисника за потврду пре уноса кључа ако кључ већ није " -"унесен у rpm базу података." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Можете увек ручно унети кључ у RPM базу података користећи следећу наредбу:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Погледајте rpm упутство за више података." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Ако желите да проверите да ли се инсталирани кључеви поклапају са кључевима " -"исписаним овде, можете употребити GnuPG ради провере поклапања отиска кључа." -" На пример:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Лака администрација" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Једноставно управљање вашим системом помоћу Cockpit-овог моћног и модерног " -"окружења. Видите и пратите системске перформансе и стање, уз то постављајте " -"и управљајте сервисима заснованим на контејнерима." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Сервиси база података" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server са собом доноси скалабилни сервер база података професионалне " -"класе, који покреће PostgreSQL пројекат отвореног кода." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Потпуно доменско пословно решење" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Спремни да пробате Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Преузмите Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Преузмите Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-битна %sGB инсталациона слика" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Fedora Server инсталациона слика вам омогућава да направите медију за ваш " -"рачунар која ће подићи инсталатер да директно инсталирате Fedora Server на " -"ваш чврсти диск" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Да бисте користили ову слику, требаће вам уређај који може да правили или " -"\"реже\" DVD-ове, или USB флеш уређај који је велик макар колико и слика." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-битна %sMB слика" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Набавите још Fedore" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® технологија" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Како да претворим Live слику у покретачки медиј?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Након што сте преузели слику, можете направити покретачки медиј од ње. Или " -"испишите слику на DVD диск, или испишите " -"слику на USB флеш диск." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Како да покренем са медија?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Проверите у документацији вашег система процедуру за подизање система са " -"медија који није уграђени чврсти диск. Поступак може бити различит зависно " -"од произвођача и модела вашег рачунара. Можда ће вам ови " -"уобичајени савети бити од користи." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Преузмите Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-битна %sGB инсталациона слика" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ово је софтвер у пред-издању и подржан је од стране Серверске радне групе. Молим упутите питања на " -"њихову дописну листу или %(team_irc)s на " -"freenode-у." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Прочитајте Белешке о издању за више " -"информација о променама и новим могућностима, и Уобичајене програмске грешке страницу за " -"информације о програмским грешкама које се обично срећу и како их избећи." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Када ће бити издата Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Прочитајте све кључне прекретнице распореда издања..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Ово је Linux радна станица коју сте чекали." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation је поуздан, пријатан за корисника и моћан оперативни " -"систем за ваш лаптоп или стони рачунар. Он има велики распон од програмера " -"до хобиста и студената до професионалаца у пословним окружењима." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“Огроман број алата које ми даје
Fedora омомгућава ми да урадим " -"посао.
То једноставно ради.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM инжењер перформанси" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Углађено корисничко окружење" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Усредсредите се на ваш програм у GNOME 3 радном окружењу. GNOME је изграђен " -"на бази повратних информација од програмера, уз минимално ометање омогућава " -"да се концентришете на оно што је важно." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Комплетна кутија са алатима отвореног кода" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Прескочите кочнице покушавајући да пронађете и изградите алате који су вам " -"потребни. Уз Fedorin комплетни скуп језика, алатки и програма, све је " -"удаљено на клик или на команду. Чак постоји хостинг пројеката и " -"репозиторијуми као што је COPR да би ваш код и програми били брзо доступни " -"заједници." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes и остали виртуелизацијски алати" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Покрените брзо виртуелне машине да тестирате ваш код на различитим " -"платформама користећи GNOME Boxes. Или зароните у моћне, скриптабилне " -"виртуелизацијске алате за још већу контролу." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Уграђена Docker подршка" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Ставите ваше апликације у контејнер, или поставите контејнерске апликације " -"одмах на Fedori, користећи најновију технологију као што је Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Спремни да пробате Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Преузмите Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Преузмите Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-битна %sGB Live слика" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Слике за мрежну инсталацију:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-битна %sMB слика" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora изведбе" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora лабораторије" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Преузмите Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Преузмите Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Ово је софтвер у пред-издању и подржан је од стране Радне групе радних станица. Молим упутите питања " -"на њихову дописну листу или %(team_irc)s на " -"freenode-у." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Архитектура" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Покрени AMI инстанцу" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Изаберите најближи регион" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-бита (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-бита (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Покрени!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Извозни прописи" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Прочитајте потпуне регулативе извоза" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Кликтањем на и преузимањем Fedore, слажете се да ћете поштовати следећа " -"правила и услове." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Сазнајте више >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "О сајту" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "О Федори" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Спонзори" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Правне ствари" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Узми Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Узми Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Подршка" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Затражите помоћ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Питајте Fedoru" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Познате бубе" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Водич кроз инсталацију" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Придружите се" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Приступите Fedora пројекту" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Планета Федора" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Радни тимови у Федори" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Федорин систем налога" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Заједница Федора" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Федору помаже компанија Ред Хет." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Сазнајте више о односу Red Hat-a и Fedore »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. и остали." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Промени језик" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "У реду" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Витка. Моћна. За сваки облак." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Најновија технологија. Стабилна основа. Заједно, за ваше програме и сервисе." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Документација и остали ресурси" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Остали начини за набављање медија" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Можете купити инсталациони Fedora медиј од он-лајн " -"продаваца или локалних продаваца у вашој близини." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Не можете приуштити инсталациони медиј? Пошаљите захтев за Fedora " -"инсталациони медиј Fedora програму за бесплатни медиј" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Информације о GPG кључевима" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "ID кључа" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Отисак" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Преузмите га са:" diff --git a/getfedora.org/po/sr@latin.po b/getfedora.org/po/sr@latin.po deleted file mode 100644 index 182218a..0000000 --- a/getfedora.org/po/sr@latin.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Serbian (LATIN)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/sv.po b/getfedora.org/po/sv.po deleted file mode 100644 index 4597644..0000000 --- a/getfedora.org/po/sv.po +++ /dev/null @@ -1,2850 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Göran Uddeborg , 2015. #zanata -# Göran Uddeborg , 2016. #zanata -# Göran Uddeborg , 2017. #zanata -# Göran Uddeborg , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-08 07:53-0400\n" -"Last-Translator: Göran Uddeborg \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" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedoras uppförandekod" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedoras uppförandekod" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "Uppför dig som en medlem av gemenskapen, följ uppförandekoden." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Uppförandekod" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedoragemenskapen består av en blandning av professionella och frivilliga " -"från hela världen, som arbetar på alla aspekter av distributionen, från " -"kodning till marknadsföring. Mångfalden är en av våra stora styrkor, men " -"den kan också leda till kommunikationsproblem och missnöje. Av det skälet " -"har vi några få grundläggande regler som vi ber folk att följa när den " -"använder projektets resurser." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Detta är inte en uttömmande lista av saker som du inte får göra. Ta det " -"snarare i den anda den är tänkt — en guide för att göra det lättare att vara" -" trevliga mot varandra." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Var hänsynsfull. Ditt arbete kommer att användas av andra, och du kommer i " -"din tur bero på andras arbete. Varje beslut du tar kommer påverka användare" -" och kollegor, och du bör ta dessa konsekvenser i beaktande när du tar " -"beslut." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Visa respekt. Vi kommer inte alla vara överens hela tiden, men oenighet är " -"inte en ursäkt för dåligt uppträdande och otrevligt sätt. Vi kan alla känna" -" frustration då och då, men vi får inte tillåta frustrationen att övergå i " -"personlig attack. Det är viktigt att komma ihåg att en gemenskap där folk " -"känner sig obekväma eller hotade inte är produktiv. Medlemmar av " -"Fedoragemenskapen bör visa respekt när de har kontakt med andra medlemmar " -"liksom med folk utanför Fedoragemenskapen och med Fedoraanvändare." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"När vi är oeniga försöker vi förstå varför. Oenighet, både social och " -"teknisk, förekommer hela tiden och Fedora är inget undantag. Det är viktigt" -" att vi reder ut oenighet och olika synpunkter konstruktivt." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Kom ihåg att vi är olika. Styrkan hos Fedora kommer från dess varierade " -"gemenskap, folk från många olika bakgrunder. Olika folk har olika " -"perspektiv på saker. Att inte kunna förstå varför någon har en viss " -"synpunkt betyder inte att de har fel. Glöm inte att det är mänskligt att " -"fela och att klandra andra tar oss ingenvart, erbjud dig istället att hjälpa" -" till att lösa problem och att hjälpa till att lära av misstag." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Hämta Fedora: hämta vårt Linuxbaserade OS som utvecklares skrivbord, för att" -" köra behållare, med mera" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Välj frihet. Välj Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Mindre inställningar, mer uppfinnande. Välj en variant av Fedora

som är anpassad för ditt behov, och få den att fungera direkt." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s är släppt! Testa den i " -"hämtningsavdelningen." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s är släppt! Hämta den nu." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Hämta nu" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation är ett finslipat, lättanvänt operativsystem för bärbara " -"och stationära datorer, med en fullständig uppsättning av verktyg för " -"utvecklare och skapare av alla sorter." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Hämta nu" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server är ett kraftfullt, flexibelt operativsystem som innehåller de " -"bästa och senaste teknikerna för datacentraler. Det ger dig kontroll över " -"all din infrastruktur och alla dina tjänster." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic tillhandahåller den bästa plattformen för din Linux-Docker-" -"Kubernetes-programstack (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora är alltid fritt för vem som helst att använda, ändra och distribuera." -" Det är byggt och använt av folk över hela klotet som arbetar tillsammans i" -" en gemenskap: Fedoraprojektet." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Vill du ha fler Fedoraalternativ?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedoragemenskapen ger också ut ARM-avbilder, alternativa live-spinn och andra varianter på Fedora " -"skräddarsydda för specifika behov. Bläddra bland dem på webbplatserna Fedora Spins eller Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Var uppkopplad och informerad." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Vill du bli involverad? Ta " -"reda på vad som händer inom gemenskapen? Läs om de" -" senaste nyheterna och intressanta saker i Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Läs dokumentationen." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Ta en titt på utgåvenoteringarna för detaljerad information om den aktuella " -"utgåvan. För att få reda på mer om att använda Fedora och detaljer såsom " -"systemkrav, se den officiella " -"dokumentationen." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Få hjälp." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Behöver du hjälp med Fedora? Ta en titt på Ask Fedora " -"där du kan läsa arkiv med frågor från andra användare, eller fråga din egna " -"fråga." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedoras sponsorer" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Fedoraprojektet är stolt över att ha följande organisationer som sponsorer …" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Huvudsponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. är huvudsponsor för Fedoraprojektet. Red " -"Hat förser Fedoraprojektet men ett vitt spektrum av resurser, inklusive stöd" -" från heltidsanställda, infrastruktur i form av hårdvara och bandbredd, " -"finansiering av arrangemang och juridisk rådgivning." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Fedoraprojektet är även tacksamt mot följande sponsorer för att de " -"tillhandahåller betydande stöd:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Intresserad av att sponsra något för Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Kontakta admin@fedoraproject.org eller titta in" -" på #fedora-adminirc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Verifiera din hämtade avbild" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "KONTROLLSUMME- och verifikationsinstruktioner" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Hur verifierar jag min avbild?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"När du har hämtat en avbild, verifiera den av säkerhets- och " -"integritetsskäl. För att verifiera din avbild, börja med att hämta den " -"aktuella CHECKSUM-filen till samma katalog som avbilden du hämtade." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "För 64-bitars avbilder" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "För 32-bitars avbilder" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "För Atomic WS" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "För Atomic Host-ISO" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "För Atomic Host-avbilder" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "För beållare" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Därefter, importera Fedoras GPG-nycklar:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Du kan verifiera detaljerna hos GPG-nycklarna här." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Verifiera nu att CHECKSUM-filen är giltig:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM-filen skall ha en korrekt signatur från en av de följande " -"nycklarna:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Fedora 26 sekundära arkitekturer (AArch64, PPC64, PPC64le, s390 och s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Slutligen, nu när CHECKSUM-filen har verifierats, kontrollera att avbildens " -"kontrollsumma stämmer:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "Om utskriften säger att filen är giltig, då är den klar att använda!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Hur verifierar jag min hämtade avbild på ett annat operativsystem?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Läs dessa instruktioner för att verifiera din avbild." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Hämta Fedora Atomic: den bästa plattfromen för din stack av program i " -"behållare" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Placera ut och skala dina program i behållare med oföränderlig " -"infrastruktur." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Hämta eller starta i ett publikt moln" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"”Vi valde att använda Fedora Atomic som basen för vår metod för utplacering " -"av vårt Navops Launch — Kubernetes-kluster för att våra kunder litar på och " -"redan kör operativsystem från Red Hat. Vi tycker om den oföränderliga " -"aspekten hos Fedora Atomic som är perfekt för miljöer i behållare.”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Chefsarkitekt, Navops av Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host från Project Atomic är en lättviktig, oföränderlig plattform " -"designad med det enda ändamålet att köra program i behållare." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedoras version av Atomic Host använder samma paketförråd som Fedora Server," -" och tillahndahåller den senaste versionen av Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree-uppdateringar" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Uppdatera atomärt ditt system från det senaste uppströms OStree. Gör dina " -"servrar identiska och enkla att backa om det uppstår ett " -"uppgraderingsproblem." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic kommandoradsgränssnitt" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Hantera Docker-behållare, systembehållare Atomic-appar med mera med ett " -"bekvämt kommandoradsverktyg." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Optimerad för Kubernetes och OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Bygger du ett Kubernetes- eller Origin-kluster för att köra dina program i " -"behållare? Kör det på Fedora Atomic, som tillhandahåller plattformen du " -"behöver på ett mindre, smidigare OS." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Redo att prova Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Hämta Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Tack för att du hämtar Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Hämtandet bör starta om några sekunder. Om inte, klicka på länken nedan:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Verifiera det du hämtat!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"När du har hämtat en avbild, verifiera den då för säkerhet och integritet. " -"För att verifiera din avbild, börja med att hämta den aktuella CHECKSUM-" -"filen till samma katalog som avbilden du hämtade och följ dessa instruktioner." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Verifiera!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Hämta Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Hämta Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host byggs varannan vecka ungefär." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Det senaste tvåveckorsbygget mötte inte alltid våra testkriterier. " -"Avbilderna som är tillgängliga är mer än %(atomic_age)s dagar. Titta på " -"projektet Atomics blogg för uppdateringar och information om blockerande fel" -" i Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Detta är de senaste officiella Fedora Atomic värdavbilderna, producerade för" -" %(atomic_age)s dagar sedan." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host-avbilder" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host är ett basoperativsystem i framkanten som följer modellen" -" hos projektet Atomic. Det är designat runt Kubernetes och behållare. " -"Avbilderna här demonstrerar det arbetet. Observera att avbilderna har " -"passerat flera nivåer av automatiserad testning." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Testa före du använder nya versioner i produktion. Om du " -"upptäcker problem gör Atomic Host-verktygen det lätt att hoppa tillbaka till" -" en tidigare utgåva — och om det händer, vänligen hjälp oss genom att " -"rapportera fel eller skicka in rättelser." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Fedora Atomic värdavbilder uppdateras ungefär varannan " -"vecka, snarare än i takt med vanliga Fedoras sexmånadersrytm. " -"Eftersom utvecklingen går snabbt stödjs endast den senaste utgåvan av " -"Fedora." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Observera att olika Fedora Atomic värdmedium är föremål för olika " -"nivåer av automatiserad testning. Du kan ta reda på mer om " -"projektet Atomic på projectatomic.io. Klicka här för att se den aktuella teststatusen." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Atomic Host-avbilder för Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Länkarna nedan kommer ge dig listningar av tillgängliga Atomic Host Hardware" -" Virtual Machine (HVM) AMI:er per region med knappar för att starta dem i " -"ditt Amazon Web Services-konto. AMI-ID:er att användas med AWS Console " -"eller kommandoradsverktyg finns också." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2-format" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"GP2-formats-AMI:er använder snabbare SSD-lagring; använd dessa AMI:er för " -"snabbhet, notera dock att dina lagringskostnader kommer vara högre än " -"normalt." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI:er" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Stäng" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI:er" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Område" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Starta" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standardformat)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"Standardformats-AMI:er är bättre lämpade om du har data som används mer " -"sällan och vill hålla lagringskostnaderna nere." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMI:er" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s Standard Atomic Host HVM AMI:er" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standardformat" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Atomic Host-avbilder för Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Vagrantboxar för Fedora Atomic Host är tillgängliga för leverantörerna " -"VirtualBox och Libvirt. Du kan starta Fedora Atomic Host i en vagrantbox " -"genom att hämta avbilderna från Fedora eller använda vagrant-verktygen för " -"att hämte avbilderna från HashiCorps Vagrant Cloud." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Visa att hämta för Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant-avbilder att hämta" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Dessa avbilder är Vagrant Boxes-avbilder för utplacering med Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox-avbild" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Om du använder Vagrant på Mac OS X eller Windows är detta förmodligen " -"avbilden du vill använda." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Hämta" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bitars %s MB VirtualBox bas-Vagrant-avbild" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM-avbild" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Om du använder Vagrant på Fedora är detta avbilden du vill använda." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bitars %s MB libvirt/KVM bas-Vagrant-avbild" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Visa att hämta med Vagrant-verktyg" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Att hämta för Vagrant med Vagrant-verktyg" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Du kan använda följande kommando för att få tag i Vagrantbox-avbilder från " -"HashiCorps Atlas." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Om du tidigare har kört Fedora %(rel)s Atomic Host i Vagrant på din maskin " -"kan du få tag i den senaste versionen genom att köra:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"För mer information om att köra Vagrant på Fedora Workstation, se vår wiki-sida." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Atomic Host-avbilder för molnmiljöer" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2-avbild" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Detta är Fedora %(rel)s Cloud Atomic värd i en Qcow2-formaterad avbild för " -"att användas med OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bitars %s MB Qcow2-avbild" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Rå avbild" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Detta är Fedora %(rel)s Cloud Atomic-värd i ett komprimerad rått " -"avbildsformat. Om du inte är säker på vad du skall använda, prova denna." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bitars %s MB xz-komprimerad rå avbild" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Annat att hämta" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO-avbild (%s MB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Behållaravbild (%s MB)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Prova en förhandsutgåva" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Vi jobbar på nästa utgåva." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Hjälp ass att få F%(rel)s klart!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Hämta F%(rel)s %(state)s-avbilder" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Hur man testar förhandsutgåvor" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Resurser" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Projekt " -"Atomic: Komma igång" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "Dokumentation om att komma igång med Project Atomic / Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Projekt" -" Atomic: Sändlista" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Gå med sändlistan uppströms på atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC-chatt" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Gå med i Projekt Atomics kanal #atomicpå " -"irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Verifiera" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Verifiera din avbild" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Hämta Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Detta är de senaste Fedora Atomic värdavbilderna, producerade " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Detta är en förhandsutgåva av programvaran och underhålls av Atomic Working Group. Rikta frågor till deras sändlista eller %(team_irc)s på freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Alla problem och fel skall rapporteras via Red Hat " -"Bugzilla. Fedoraprojektet ger inga garantier om dess lämplighet eller " -"användbarhet." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMI:er" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMI:er" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrantboxar för Fedora Atomic Host är tillgängliga för leverantörerna " -"VirtualBox och Libvirt. Du kan starta Fedora Atomic Host i en vagrantbox " -"genom att hämta avbilderna från Fedora eller använda vagrant-verktygen för " -"att hämte avbilderna från HashiCorps Atlas." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Detta är Fedora %(rel)s %(state)s Cloud Atomic Host i en Qcow2-formaterad " -"avbild att användas med OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Detta är Fedora %(rel)s %(state)s Cloud Atomic Host i ett komprimerad rått " -"avbildsformat. Om du inte är säker på vad du skall använda, prova denna." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedoraprojektet — Sidan hittas inte" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Sidan finns inte" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Vi ber om ursäkt, men filen eller sidan du begärde finns inte." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Idéer för felsökning" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Dubbelkolla URL:en om du har skrivit in den manuellt. Kopierade du den " -"rätt?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Trasig länk? Kontakta webmaster:n och förklara vilken " -"länk som förde dig hit." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Sidan eller filen har flyttat. Kolla på huvudsidan " -"eller sök i vår wiki." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Paketsigneringsnycklar" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Denna sida listar de publika GPG-nycklarna som används för att signera paket" -" i Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Ta reda på hur Fedora skyddar dig." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora använder paketsignering med GPG för att säkerställa att " -"paketintegriteten inte har brutits." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Läs frågor och svar för att ta reda på mer »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "För närvarande använda nycklar" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Primär" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Sekundär" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Letar efter inaktuella nycklar?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Inaktuella paketsigneringsnycklar" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Denna sida listar de publika GPG-nycklarna som inte används längre för att " -"signera paket i Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Inaktuella och oanvända nycklar" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora ≤ 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG-nyckel" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Paket på installationsmedium är signerade med denna nyckel. De relevanta " -"dnf-förråden är fedora, fedora-updates för" -" Fedora 7-9, och core och core-updates för" -" Fedora Core (version 6 och tidigare). Se http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html för information om varför denna " -"nyckel är inaktuell." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora ≥ 7 test" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Om du deltar i att testa paketen är detta nyckeln som du kommer använda för " -"att verifiera testpaketen. Denna nyckel signerar paketen som är i förrådet " -"fedora-testing. Se http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html för information om varför denna " -"nyckel är inaktuell." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 test" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 test" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Om du använder Fedora Extras med Fedora Core 6, använd detta paket från " -"förrådet extras. Denna nyckel kommer inte längre användas " -"efter att Fedora Core 6 och Extras uppnått sin livslängd (7 december 2007)." -" Denna nyckel ingår inte i paketet fedora-release i Fedora" -" 7 och senare utgåvor." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Denna nyckel användes för paket som gavs ut av projektet Fedora Legacy för " -"att uppgradera utgåvor som hade uppnått sin officiella livslängd. Projektet" -" Fedora Legacy finns inte längre, så denna nyckel kommer inte längre " -"användas för att signera paket. Denna nyckel ingår inte i paketet fedora-release i Fedora 7 och senare utgåvor." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Frågor och svar om paketsignering" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Ta reda på mer om hur Fedora använder GPG för att signera paket och skydda " -"din säkerhet." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Hur använder Fedoraprojektet GPG-nycklar för att signera paket?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Varje stabilt RPM-paket som publiceras av Fedoraprojektet är signerad med en" -" GPG-signatur. Som standard kommer dnf och de grafiska " -"uppdateringsverktygen verifiera dessa signaturer och vägra att installera " -"några paket som inte är signerade eller som har felaktiga signaturer. De " -"bör alltid verifiera signaturen av ett paket före du installerar det. Dessa" -" signaturer säkerställer att paketet du installerar producerades av " -"Fedoraprojektet och inte har modifierats (av misstag eller uppsåtligen) av " -"någon spegel eller webbplats som tillhandahåller paketen." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Paket som kan hämtas från byggsystemet Koji innehåller inte signaturer, så " -"du bör använda dem försiktigt. På liknande sätt är inte helt nya paket i " -"Rawhide nödvändigtvis signerade." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Att importera nycklar" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Nycklarna ingår i paketet fedora-release, du kan se dem i " -"katalogen /etc/pki/rpm-gpg. Observera att inte alla " -"nycklar i denna katalog används av Fedoraprojektet — några används för att " -"signera Red Hat Enterprise Linux-paket eller används inte alls längre. Om " -"du använder paket från Red Hat Enterprise Linux, se https://www.redhat.com/security/team/key. Nycklarna som " -"används av Fedora är aktiverade i konfigurationen av dnf-förråd, så du " -"behöver normalt inte importera dem manuellt in i din rpm-databas." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Förutom paketet fedora-release och denna webbsida kan du hämta Fedora-" -"nycklarna från en publik nyckelserver, såsom keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"För några förråd, såsom förråd med stabila paket och testpaket i " -"standardkonfigurationen kan dnf hitta en lämplig nyckel för" -" förrådet och frågar användaren om godkännande innan den importerar nyckeln " -"om den inte redan är importerad in i rpm-databasen." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Du kan alltid importera en nyckel i RPM:s databas för hand genom att använda" -" följande kommando:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Se manualen för rpm för mer information." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Om du vill verifiera att nycklarna som är installerade på ditt system " -"stämmer med nycklarna som är listade här kan du använda GnuPG för att " -"kontrollera att fingeravtrycken på nycklarna stämmer. Till exempel:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Hämta Fedora Server: den senaste tekniken för dina program och tjänster" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Kör dina program på ett Linux server-OS med den senaste tekniken i öppen " -"källkod." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Nu med innehåll i flera versioner med oberoende livscykler — så att din " -"server kan köra både snabbt och långsamt." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server är ett serveroperativsystem med kort livscykel och stöd från " -"gemenskapen som gör att erfarna systemadministratörer med erfarenhet från " -"vilket OS som helst kan använda de allra senaste teknikerna som finns " -"tillgängliga inom öppen källkod." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Introducerar modularitet" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Modularitet medför ett nytt Modular-förråd som tillhandahåller ytterligare " -"versioner av programvara med oberoende livscykler." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Välj den rätta versionen av ett program eller en språckstack som du " -"behöver, och behåll den även när ditt OS uppgraderas till en nyare version." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Ta reda på mer om modularitet" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Enkel administration" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Hantera ditt system enkelt med Cockpits kraftfulla, moderna gränssnitt. Se " -"och övervaka systemprestanda och status, och placera ut och hantera " -"behållarbaserade tjänster." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Databastjänster" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server ger dig en skalbar databasserver i företagsklass som drivs av " -"det öppna-källkods-projektet PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Fullständig lösning för företagsdomänen" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Uppgradera ditt Linuxnätverk med avancerad identitetshantering, DNS, " -"certifikattjänster, integration av Windows™-domän i hela din domän med " -"FreeIPA, Domain Controller:n i öppen källkod." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"”För DevConf US behövde jag ett system för att hantera konferensen. Jag " -"upptäckte regcfp, av Patrick Uiterwijk, som verkade passa mina behov. Dock " -"ville den inte köra i nodejs 8 i F27. Genom att starta F28 Server, och " -"välja strömmen ”nodejs:6” fungerade det utmärkt!”" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "DevConf US-konferensens medordförande" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Klar att prova Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Hämta Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Hämta Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bitars %s GB installationsavbild" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Med Fedora Server installationsavbild kan du göra ett medium för din dator " -"som startar installeraren som direkt kan installera Fedora Server på din " -"hårddisk." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"För att använda denna avbild behöver du en enhet som kan skapa eller " -"”bränna” DVD:er, eller ett USB-minne åtminstone så stort som avbilden." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Om du skulle vilja prova de nya modulära funktionerna i Fedora Server, besök" -" då avsnittet Använda moduler i " -"Modularitetsdokumentationen. Om du skulle vilja ha mer information om " -"modularitet i allmänhet, besök webbsajten i " -"pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Nätinstallationsavbild:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bitars %s MB-avbild" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s alfa" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Hämta F%(rel)s alfa-avbilder" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Hämta F%(rel)s beta-avbilder" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Hämta mer Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM®-teknik" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Hur gör jag live-avbilden till ett startbart medium?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Efter att du hämtat avbilden gör du ett startbart medium av den. Bränn " -"antingen avbilden på en blank DVD-skiva eller skriv avbilden på ett USB-minne." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Hur startar jag från mediet?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Titta i din dators systemdokumentation efter proceduren för att starta från " -"ett annat medium än den inbyggda hårddisken. Processen kan skilja beroende " -"på din dators tillverkare och modell. Du kanske finner dessa " -"vanliga tips användbara." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Hämta Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Hämta Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bitars %s GB installationsavbild" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Detta är en förhandsutgåva av programvaran och underhålls av Server Working Group. Rikta frågor till deras sändlista eller %(team_irc)s på freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Läs utgåvenoteringarna för mer information " -"om ändringar och nya funktioner, och sidan med vanliga fel för information om fel som man " -"ofta stöter på och hur man undviker dem." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "När kommer Fedora %s släppas?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Läs alla viktiga milstenar från utgåvans tidsplan …" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"När du har hämtat en avbild, verifiera den då för säkerhet och integritet. " -"För att verifiera din avbild, börja med att hämta CHECKSUM-filen nedan till " -"samma katalog som avbilden du hämtade och följ dessa instruktioner." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Hämta Fedora Workstation: det bästa skrivbords-OS:et för programutvecklare" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Detta är den Linuxarbetsstation du har väntat på." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation är ett pålitligt, användarvänligt och kraftfullt " -"operativsystem för din bärbara eller stationära dator. Det stödjer ett bred" -" variation av utvecklare, från hobbyanvändare och studenter till yrkesmän i " -"företagsmiljöer." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"”Mängden av verktyg som tillhandahålls av
Fedora låter mig få jobbet " -"gjort.
Det bara fungerar.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM prestandaingenjör" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Elegant användargränssnitt" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Fokusera på din kod i skrivbordsmiljön GNOME 3. GNOME är gjort med " -"återkoppling till utvecklarna och minimerar distraktionsmomenten, så att du " -"kan koncentrera dig på det viktiga." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Fullständig verktygslåda i öppen källkod" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Hoppa över trögheten i att hitta eller bygga de verktyg du behöver. Med " -"Fedoras fullständiga uppsättning med språk, verktyg och tillbehör i öppen " -"källkod är allt ett klick eller en kommandorad bort. Det finns även " -"härbärgering av projekt och förråd som COPR för att göra din kod och dina " -"byggen snabbt tillgängliga för gemenskapen." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes & andra virtualiseringsverktyg" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Få igång virtuella maskiner snabbt för att testa din kod på flera " -"plattformar med GNOME Boxes. Eller sätt dig in i kraftfulla, skriptbara " -"virtualiseringsverktyg för ännu större kontroll." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Inbyggt stöd för Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Stoppa dina egna program i behållare, eller placera ut program i behållare " -"färdiga ur paketet på Fedora, med den senaste tekniken såsom Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Redo att prova Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Hämta Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Hämta Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Fedora mediaskrivare för Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-bitars %s GB ISO för Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"En nedhämtning behövs endast för nya installationer. För att uppgradera, följ dessa instruktioner." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Fedora mediaskrivare Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Hämta Fedora mediaskrivare för ditt operativsystem." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Behöver du instruktioner? Eller en annan version?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Att köra Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "För att köra Fedora Workstation behöver du:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora mediaskrivare (hämta ovan)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "En USB flash-enhet med åtminstone %s GB utrymme tillgängligt" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation levereras via Fedora mediaskrivare. Hämta detta program " -"för din plattform som stödjs och följ stegen för att " -"skapa en live-version (se ”Vad betyder ’Live’?” till höger) av Fedora " -"workstation på en USB-flash-enhet. Du kan sedan köra live-versionen av " -"Fedora Workstation från din USB-flash-enhet." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Om du vill kan du installera Fedora Workstation på en bärbar eller stationär" -" dator som har åtminstone 1 GHz-processor, 1 GB RAM och 10 GB utrymme " -"tillgängligt. För att göra detta, kör live-versionen av Fedora Workstation " -"från din USB-flash-enhet på datorn du vill installera på, kör programmet " -"Fedora mediaskrivare, och följ frågorna på skärmen för att fullfölja " -"installationen." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Plattformar som stödjs" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora mediaskrivare stödjer följande plattformar:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vi har automatiskt detekterat att du kör Mac OS X och har " -"erbjudit den versionen att hämta. Om vi har detekterat ditt operativsystem " -"inkorrekt eller du vill hämta en annan version, klicka på knappen ”Visa att " -"hämta för alla plattformar” nedan." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Vi har automatiskt detekterat att du kör Linux och har " -"erbjudit den versionen att hämta. Om vi har detekterat ditt operativsystem " -"inkorrekt eller du vill hämta en annan version, klicka på knappen ”Visa att " -"hämta för alla plattformar” nedan." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Vi har automatiskt detekterat att du kör Windows och har " -"erbjudit den versionen att hämta. Om vi har detekterat ditt operativsystem " -"inkorrekt eller du vill hämta en annan version, klicka på knappen ”Visa att " -"hämta för alla plattformar” nedan." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Visa att hämta för alla plattformar" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Tillgänglig via DNF för Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Fler detaljer" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Hur man använder denna ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Verifiera denna avbild" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bitars %s GB Live-avbild" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bitars %s GB live-avbild" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Nätinstallationsavbilder:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bitars %s MB-avbild" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Prova Atomic Workstation" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" -"Atomic tillhandahåller en oföränderlig OS-avbild och uppdateringar via " -"OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-bitars %s GB Atomic-avbild" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Ta reda på mer" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Kungörelse om utgåvan" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Läs den fullständiga kungörelsen om utgåvan i Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Utgåvenoteringar" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Ta reda på ändringar sedan senaste versionen av Fedora liksom minimikraven " -"och rekommendationerna för att köra Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Installationsguide" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Vi rekommenderar att du tittar igenom denna före du installerar ditt system," -" eftersom den svarar på många vanliga frågor." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Vanliga fel" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"En utmärkt resurs att konsultera ifall du stöter på några problem under " -"installation eller användning av Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Vad betyder ”Live”?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora mediaskrivare kommer skapa en fullständig, körande Fedora Workstation" -" som du kan köra direkt från en USB-enhet. Du kan använda Live-avbilden för" -" att testa och leka med Fedora utan att göra några ändringar på din " -"hårddisk." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"När du är redo kan du installera Fedora på din hårddisk inifrån dena " -"”live”-version av Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spinn" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Lab" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Hämta Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Hämta Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "Uppgradera via DNF om du redan är på Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Detta är en förhandsutgåva av programvaran och underhålls av Workstation Working Group. Rikta frågor till " -"deras sändlista eller %(team_irc)s på " -"freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Att köra förhandsutgåveversioner av Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"För att köra en förhandsutgåveversion av Fedora Workstation behöver du:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora mediaskrivare (finns att hämta nedan)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"En live-avbilds-ISO av förhandsutgåveversionen av Fedora " -"som du vill köra" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"VARNING: denna procedur förstör all data på ditt USB-medium. Se till att " -"säkerhetskopiera eventuella viktiga filer från ditt USB-medium före du gör " -"detta." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Hämta appen Fedora mediaskrivare nedan." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Hämta den önskade ISO-avbilden." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Öppna appen Fedora mediaskrivare. Du kan behöva ge ett lösenord för att ge " -"appen de rätta rättigheterna." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Välj ”Anpassat OS …” från listan." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "På sidan Anpassat OS, välj knappen ”Välj live-ISO”." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "Leta i filvalet nedan upp och välj den ISO-avbild du hämtade." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"Sätt in din USB-sticka i datorn. Om du använde din USB-sticka tidigare för " -"att skapa live-medium kan du behöva återställa den till " -"fabriksinställningar. Appen kommer fråga dig om att göra det i så fall." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Välj ”Skapa Live-USB” för att skriva avbilden. Vänta tills processen är " -"klar före du tar bort mediumet och stänger appen." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Verifiera 64-bitars!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Verifiera 32-bitars!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Hur man provar förhandsutgåvor" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Fedoras wiki-guide om hur man hjäler till att testa förhandsutgåveversioner " -"av Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Arkitektur" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Rotlagring" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Starta AMI-instans" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Välj närmsta område" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bitars (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bitars (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Starta den!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Exportbegränsning" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Läs fullständiga exportregler" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Genom att klicka på och hämta Fedora går du med på att följa dessa regler " -"och villkor." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Läs mera →" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Om" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Om Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorer" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedoratidningen" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Rättsligt" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Hämta Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Hämta Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Hämta Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternativa sätt att hämta" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Support" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Få hjälp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Fråga Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Vanliga fel" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedoras utvecklarportal" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Installationshandledning" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Gå med" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Gå med i Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedoras kontosystem" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedoragemenskapen" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora är sponsrat av Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Ta reda på mer om relationen mellan Red Hat och Fedora →" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. med flera." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Skicka kommentarer och rättelser till gruppen för webbplatser. Skicka kommentarer om " -"översättningen till svenska till tp-sv@listor.tp-sv.se." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Byt språk" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -" är mer än så" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Slimmad. Kraftfull. Redo för varje moln." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Den senaste tekniken. En stabil grund. Tillsammans, för dina program och " -"tjänster." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Dokumentation och andra resurser" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Före du installerar Fedora, kan du vilja säkerställa att ditt system uppnår " -"minimikraven för Fedora. Titta i utgåvenoteringarna på nätet för att se " -"minimikrav och rekommendationer." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Det finns även en fullständig " -"installationsguide tillgänglig. Vi rekommenderar att du tittar igenom " -"den före du installerar ditt system, eftersom den svarar på många vanliga " -"frågor." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Andra sätt att få tag i medium" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Du kan köpa installationsmedium för Fedora från nätaffärer eller en lokal försäljare i " -"ditt område." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Har du inte råd med priset på ett installationsmedium? Be om ett " -"installationsmedium för Fedora från programmet Fedora Free " -"Media." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG-nyckelinformation" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Nyckel-ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingeravtryck" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Hämta den från:" diff --git a/getfedora.org/po/ta.po b/getfedora.org/po/ta.po deleted file mode 100644 index 8d515f5..0000000 --- a/getfedora.org/po/ta.po +++ /dev/null @@ -1,2448 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:27-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora நிதியளிப்பவர்கள்" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "அடுத்து, Fedoraவின் GPG விசைகளை இறக்குமதி செய்யவும்:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "இப்போது, CHECKSUM கோப்பு சரியானதா என்று சரிபார்க்கவும்:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM கோப்பு பின்வரும் விசைகள் ஒன்றிலிருந்து ஒரு நல்ல கையொப்பத்தை " -"பெற்றிருக்க வேண்டும்:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"நீங்கள் கைமுறையாக இணைய முகவரியை உள்ளிட்டால் இருமுறை சரி பார்க்கவும், நீங்கள்" -" சரியாக நகலெடுத்தீர்களா?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "விசைகளை ஏற்றுதல்" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"நீங்கள் எப்போதும் RPMகளின் தரவுத்தளத்திற்கு ஒரு விசையை இறக்கவும் அதற்கு " -"பின்வரும் கட்டளையைப் பயன்படுத்தவும்:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "மேலும் தகவலுக்கு rpm கையேட்டை பார்க்கவும்." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"உங்கள் கணினியில் நிறுவப்பட்ட விசைகள் இங்கே பட்டியலிடப்பட்ட விசைகளுடன் " -"பொருந்துகிறதா என பார்க்க, நீங்கள் GnuPGஐ விசை பொருத்தத்தின் கைரேகைக்கு " -"சரிபார்க்கவும். எடுத்துக்காட்டாக:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "பற்றி" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora பற்றி" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "நிதியளிப்பவர்கள்" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "உதவி பெறுதல்" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedoraவில் சேருதல்" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/te.po b/getfedora.org/po/te.po deleted file mode 100644 index 492e00b..0000000 --- a/getfedora.org/po/te.po +++ /dev/null @@ -1,2447 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:27-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "ఇప్పుడే దించుకోండి" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "తర్వాతి, ముఖ్యమైన ఫెడోరా యొక్క GPG కీ(లు):" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "ఇప్పుడు, CHECKSUM ఫైలు విలువైనదేమో నిర్ధారించుము:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"ఈ క్రింది కీలలో వొక దానినుండి CHECKSUM ఫైలు మంచి సంతకాన్ని కలిగివుండాలి:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "ప్రాంతము" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "దింపుకోండి" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "ఫెడోరా పరియోజన - పేజీ కనపడలేదు" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"మీ URLను మానవీయంగా ప్రవేశపెట్టివుంటే వొకటికి రెండుసార్లు సరిచూసుకొనుము. మీరు" -" దానిని సరిగానే నకలుతీసారా?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "ఫెడోరా 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "ఫెడోరా 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "ఫెడోరా 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "కీలను దిగుమతి చేయుట" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"మీరు యెప్పుడైనా కీను RPMయొక్క డాటాబేస్‌కు ఈ క్రింది ఆదేశమును వుపయోగించి " -"దిగుమతి చేయవచ్చు:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "అదిక సమాచారము కొరకు rpm మాన్యువల్‌ను చూడుము." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"మీరు మీ సిస్టమ్‌నందు సంస్థాపించబడిన కీలను నిర్ధారించుకోవాలంటే వాటిని యిక్కడ " -"జాబితాచేసిన కీలతో సరిపోల్చుము, కీ సరిజోడీల వేలిముద్రలు(ఫింగర్‌ప్రింట్)ను " -"పరిశీలించుటకు మీరు GnuPGను వుపయోగించవచ్చు. ఉదాహరణకు:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "ఫెడోరా స్పిన్లు" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "ఫెడోరా %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "గురించి" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "ఫెడోరా గురించి" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "తోడ్పాటు" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "సహాయాన్ని పొందండి" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "ఫెడోరాని అడగండి" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "సాధారణ లోపాలు" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "స్థాపక మార్గదర్శిని" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "చేరండి" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "ఫెడోరాలో చేరు" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "ప్లానెట్ ఫెడోరా" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "ఫెడోరా SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ఫెడోరా ఖాతా వ్యవస్థ" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "ఫెడోరా సంఘం" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "ఫెడోరా రెడ్ హాటుచే ప్రాయోజితమైంది." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "సరే" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/tg.po b/getfedora.org/po/tg.po deleted file mode 100644 index 5f33f05..0000000 --- a/getfedora.org/po/tg.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:27-0500\n" -"Last-Translator: Copied by Zanata \n" -"Language-Team: Tajik (http://www.transifex.com/projects/p/fedora-web/language/tg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "калидҳо содирот мекунад" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Гирифтани Ёрӣ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Бо Fedora ҳамроҳ шав" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/th.po b/getfedora.org/po/th.po deleted file mode 100644 index 8bee935..0000000 --- a/getfedora.org/po/th.po +++ /dev/null @@ -1,2567 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Sukit Arseanrapoj , 2015. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-08-17 09:00-0400\n" -"Last-Translator: Sukit Arseanrapoj \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" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "ข้อพึงปฏิบัติในชุมชน Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "ข้อพึงปฏิบัติของ Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "สมาชิกของชุมชนเราทุกคนทำตามข้อพึงปฏิบัติ" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "ข้อพึงปฏิบัติ" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"ชุมชน Fedora ประกอบไปด้วยมืออาชีพและอาสาจากทั่วโลก " -"ซึ่งร่วมกันพัฒนาทุกส่วนของดิสทริบิวชั่นไม่ว่าจะเป็นการเขียนโปรแกรมไปจนถึงทำการตลาด" -" ชุมชนที่หลากหลายเป็นจุดแข็งของเรา " -"แต่ในขณะเดียวกันก็อาจนำไปสู่ปัญหาทางการสื่อสารได้ เพื่อลดปัญหาดังกล่าว " -"เราจึงตั้งกฏเกณฑ์สองสามข้อที่ทุกคนในชุมชนต้องปฏิบัติตามเมื่อร่วมงานกันในโปรเจคนี้" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"เราไม่มีรายการสิ่งต้องห้ามให้คุณ แต่ขอให้เข้าใจว่านี่เป็นแค่หลักคร่าว ๆ " -"ที่ช่วยเป็นตัวนำทาง - " -"เป็นแค่คำแนะนำเพื่อให้เราแสดงส่วนที่ดีที่สุดต่อกันและกัน" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"กรุณานึกถึงผู้อื่น งานของคุณจะถูกใช้โดยคนอื่น " -"และคุณเองก็ต้องพึ่งพางานที่คนอื่นทำ " -"การตัดสินใจของคุณนั้นมีผลต่อผู้ใช้และเพื่อนร่วมงานคนอื่น ๆ " -"ดังนั้นขอให้นึกถึงคนอื่น ก่อนที่คุณจะตัดสินใจ" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"การเห็นต่าง ไม่ว่าจะเป็นทางสังคมหรือทางด้านเทคนิคนั้นเกิดขึ้นได้ตลอดเวลา " -"สิ่งสำคัญคือเราควรพยายามทำความเข้าใจอีกฝ่าย " -"และแก้ไขข้อขัดแย้งและความเห็นที่ต่างกันอย่างสร้างสรรค์" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"โปรดจำไว้เสมอว่าทุกคนแตกต่างกัน พลังของ Fedora " -"มาจากชุมชนอันหลากหลายที่มีประสบการณ์แตกต่างกัน " -"ต่างคนก็อาจมีมุมมองที่แตกต่าง " -"และการที่เราไม่เข้าใจมุมมองของอีกฝ่ายก็ไม่ได้หมายความว่าเขาผิด " -"การทำผิดพลาดนั้นเป็นธรรมชาติของมนุษย์ " -"แต่การโทษกันและกันคงไม่ช่วยทำให้อะไรดีขึ้น " -"ทุกคนควรจะร่วมกันแก้ปัญหาและเรียนรู้จากข้อผิดพลาดมากกว่า" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "เวิร์คสเตชั่น" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "ดาวน์โหลดเลย" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "เซิร์ฟเวอร์" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora เซิร์ฟเวอร์ คือระบบปฏิบัติการอันทรงพลังและยืดหยุ่น " -"ซึ่งมาพร้อมเทคโนโลยีล่าสุดสำหรับดาต้าเซ็นเตอร์ที่จะทำให้คุณสามารถควบคุมทุกอย่างได้อย่างง่ายดาย" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"ทุกคนสามารถใช้งาน แก้ไข และแจกจ่าย Fedora ได้อย่างอิสระเสมอ " -"เพราะมันคือผลงานของผู้คนทั่วโลกที่ร่วมงานกันเป็นชุมชนในชื่อ Fedora Project" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "สปอนเซอร์ของ Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Fedora มีความภูมิใจที่ได้รับการสนับสนุนจากองค์กรเหล่านี้..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "สปอนเซอร์หลัก" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. คือสปอนเซอร์หลักของ Fedora Project โดย Red" -" Hat ให้ทรัพยากรต่าง ๆ ไม่ว่าจะเป็นการสนับสนุนจากพนักงานประจำ " -"ฮาร์ดแวร์และแบนด์วิธของเครือข่าย ทุนสำหรับการจัดอีเวนต์ " -"และคำปรึกษาด้านกฏหมาย" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "Fedora Project ขอขอบคุณสปอนเซอร์ที่ให้การสนับสนุนอย่างมากมายเหล่านี้:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "สนใจร่วมเป็นสปอนเซอร์ให้ Fedora มั้ย?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"กรุณาติดต่อ admin@fedoraproject.org หรือ " -"แวะมาคุยกับเราที่ห้อง #fedora-admin บน " -"irc.freenode.net ได้เลย" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "ยืนยัน Image ที่คุณดาวน์โหลดไป" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "ขั้นตอนการตรวจและยืนยัน CHECKSUM" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "ฉันจะยืนยัน image ได้ยังไง?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"เมื่อคุณดาวน์โหลดไฟล์ image ไว้ที่เครื่องแล้ว " -"คุณควรยืนยันความถูกต้องของไฟล์เพื่อความปลอดภัย วิธีการยืนยันขั้นตอนแรกคือ " -"ให้ดาวน์โหลดไฟล์ CHECKSUM ไปไว้ในแฟ้มเดียวกันกับที่คุณเก็บไฟล์ image " -"ในเครื่องของคุณ" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "ต่อไป ให้นำเข้ากุญแจ GPG ของ Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"คุณสามารถยืนยันรายละเอียดของ GPG key(s) ได้ ที่นี่" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "จากนั้นตรวจสอบว่าไฟล์ CHECKSUM ถูกต้อง:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"ไฟล์ CHECKSUM ควรจะมีลายเซ็นที่ถูกต้องจาก key อันใดอันหนึ่งดังต่อไปนี้:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"เมื่อคุณยืนยันว่าไฟล์ CHECKSUM ถูกต้องแล้ว ขั้นตอนสุดท้ายคือยืนยันว่า " -"checksum ของไฟล์ image นั้นตรงกัน:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "ถ้าผลลัพธ์แสดงว่าไฟล์ถูกต้อง คุณก็นำไปใช้งานได้เลย!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "ฉันจะยืนยัน image ที่ดาวน์โหลดมาในระบบปฏิบัติการอื่นได้ยังไง?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "ขอบคุณที่ดาวน์โหลด Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"การดาวน์โหลดน่าจะเริ่มในอีกไม่กี่นาทีนี้ ถ้าไม่ลองคลิ๊กที่ลิงก์ด้านล่างนี้:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "ยืนยันการดาวน์โหลดของคุณ!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"เมื่อคุณดาวน์โหลด image เสร็จเรียบร้อยแล้ว " -"อย่าลืมยืนยันความถูกต้องของไฟล์ด้วย ขั้นตอนแรกในการยืนยันคือดาวน์โหลดไฟล์ " -"CHECKSUM ไว้ในแฟ้มเดียวกันกับไฟล์ image ในเครื่องของคุณ จากนั้นก็ทำตาม ขั้นตอนนี้" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "ปิด" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "ภูมิภาค" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "เริ่มใช้งาน" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standard HVM AMIs" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Image สำหรับ VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"ถ้าคุณใช้ Vagrant บน Mac OS X หรือ วินโดวส์ คุณน่าจะกำลังมองหา image " -"นี้อยู่" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "ดาวน์โหลด" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "%sMB VirtualBox Base Vagrant Image 64-บิต" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Image สำหรับ libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "ถ้าคุณใช้ Vagrant บน Fedora คุณควรใช้ image นี้" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "%sMB libvirt/KVM Base Vagrant Image 64-บิต" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 Image" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"นี่คือ Fedora %(rel)s Cloud Atomic Host image ในรูปแบบ Qcow2 สำหรับใช้กับ " -"OpenStack" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "%sMB Qcow2 Image 64-บิต" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Raw Image" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"นี่คือ Fedora %(rel)s Cloud Atomic Host image ในรูปแบบ raw (ที่บีบอัดแล้ว) " -"ถ้าคุณไม่แน่ใจว่าควรใช้ตัวไหน ให้ลองใช้ตัวนี้ก่อน" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "%sMB xz-Compressed Raw Image 64-บิต" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "ดาวน์โหลดอื่น ๆ" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "ยืนยันไฟล์ Image" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"ถ้าพบปัญหาหรือบั๊กใด กรุณารายงานที่ Red Hat Bugzilla ทาง" -" Fedora Project ไม่รับประกันว่าซอฟท์แวร์นี้จะเหมาะกับการใช้งานสำหรับคุณ" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"นี่คือ Fedora %(rel)s %(state)s Cloud Atomic Host ในรูปแบบ raw image " -"ที่บีบอัดแล้ว ถ้าไม่แน่ใจว่าต้องใช้ตัวไหน ให้ลองใช้ตัวนี้" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - ไม่พบหน้านี้" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Page Not Found" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "ขออภัยด้วย แต่เราไม่พบไฟล์หรือเนื้อหาที่คุณต้องการ" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "ไอเดียสำหรับตรวจหาปัญหา" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "ตรวจสอบ URL อีกครั้งหากพิมพ์เองหรือถูกคัดลอกมาอย่างถูกต้องหรือยัง?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"พบลิงก์ที่ใช้ไม่ได้รึเปล่า? ช่วติดต่อ เว็ปมาสเตอร์ " -"และอธิบายว่าลิงก์ไหนที่พาคุณมาถึงหน้านี้ด้วยนะ" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"เนื้อหาหรือไฟล์นี้อาจถูกย้ายไปที่อื่นแล้ว ลองเช็ค ไซต์หลัก หรือค้นหาใน วิกิ ดูสิ" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Package Signing Keys" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "หน้านี้แสดง GPG key สาธารณะทั้งหมดที่ใช้ในการ sign package ของ Fedora" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "เรียนรู้ว่า Fedora ช่วยปกป้องคุณได้ยังไง" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora ใช้ GPG package signing " -"เพื่อให้คุณยืนยันได้ว่าแพคเกจไม่ได้ถูกผู้ไม่หวังดีย้อมแมวหรือแก้ไข" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "ลองอ่าน FAQ เพื่อเรียนรู้เพิ่มเติม »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Keys ที่ใช้อยู่ในปัจจุบัน" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "ตัวหลัก" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "ตัวสำรอง" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "มองหา key เก่าที่เลิกใช้ไปแล้ว อยู่รึเปล่า?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Package Signing Keys ที่เลิกใช้ไปแล้ว" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"หน้านี้แสดง GPG key สาธารณะที่ไม่ได้ใช้เพื่อ sign package ของ Fedora แล้ว" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Key ที่ถูกปลดระวางและเลิกใช้ไปแล้ว" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG key" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"ถ้าคุณร่วมทดสอบ package คุณต้องใช้ key นี้เพื่อยืนยัน package " -"ที่ต้องการจะทดสอบเสียก่อน เพราะ key นี้ถูกใช้เพื่อ sign package ใน fedora-testing repository ลองดูที่ http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html สำหรับข้อมูลเพิ่มเติมว่าทำไม key" -" นี้ถึงถูกปลดระวาง" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 testing" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 testing" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"ถ้าคุณใช้ Fedora Extras กับ Fedora Core 6 ให้ใช้ package จาก " -"extras repository อย่างไรก็ตาม key " -"นี้จะไม่ถูกนำมาใช้หลังจาก Fedora Core 6 และ Extras หมดอายุ (ในวันที่ 7 " -"ธันวาคม 2550) และจะไม่ถูกเก็บใน fedora-release package " -"สำหรับ Fedora 7 ขึ้นไป" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Key นี้ถูกใช้สำหรับ package ใน Fedora Legacy project เพื่ออัพเดต release " -"ที่หมดอายุการใช้งานไปแล้ว ปัจจุบัน Fedora Legacy project ไม่มีอีกแล้ว " -"เพราะฉะนั้น key นี้จึงไม่ถูกนำมาใช้อีก และจะไม่อยู่ใน fedora-" -"release package สำหรับ Fedora 7 ขึ้นไปด้วย" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Package Signing FAQ" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"เรียนรู้เพิ่มเติมว่า Fedora เพิ่มความปลอดภัยแก่คุณโดยการ sign package ด้วย " -"GPG ได้ยังไง" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Fedora Project ใช้ GPG key เพื่อ sign package ยังไง?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "การนำเข้ากุญแจ" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"นอกจากแพคเกจ fedora-release และที่หน้านี้ คุณสามารถดาวน์โหลด Fedora key จาก" -" public key server เช่น keys.gnupg.net ได้ด้วย" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "สามารถนำเข้ากุญแจไปยังฐานข้อมูล RPM ด้วยมือได้ด้วยคำสั่งต่อไปนี้:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "อ่านคู่มือ rpm สำหรับข้อมูลเพิ่มเติม" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"หากต้องการตรวจสอบว่ากุญแจที่ติดตั้งในระบบตรงกับกุญแจที่นี่หรือไม่ สามารถใช้ " -"GnuPG ตรวจสอบลายนิ้วมือของกุญแจว่าตรงหรือไม่ เช่น:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora เซิร์ฟเวอร์" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "พร้อมลองใช้ Fedora Server รึยัง?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "ดาวน์โหลด Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "ดาวน์โหลด Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Image สำหรับการติดตั้งของ Fedora Server " -"ทำให้คุณบู๊ตตัวช่วยติดตั้งผ่านแผ่นดิสก์หรืออุปกรณ์อื่น ๆ เพื่อติดตั้ง Fedora" -" ลงในฮาร์ดดิสก์ของคุณ" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"สำหรับการใช้งาน คุณต้องเขียน image ลงบนแผ่น DVD หรือ USB flash drive " -"ที่มีขนาดไม่น้อยกว่าขนาดของ image" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "หา Fedora เวอร์ชั่นอื่น" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® Technology" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "ฉันจะบู๊ตจาก Live image ได้ยังไง?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"หลังจากดาวน์โหลดเสร็จ คุณต้องสร้าง media สำหรับการบู๊ตเครื่อง คุณสามารถ เขียน image ใส่แผ่น DVD หรือ เขียน image ใส่" -" USB flash drive" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "ฉันจะบู๊ตจากแผ่นหรือ drive ที่เขียนได้ยังไง?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"กรุณาศึกษาคู่มือของเครื่องคอมพิวเตอร์คุณสำหรับวิธีการบู๊ตเครื่องจาก media " -"อื่นนอกจากฮาร์ดดิสก์ " -"ทั้งนี้วิธีการอาจแตกต่างกันไปขึ้นอยู่กับผู้ผลิตและรุ่นของคอมพิวเตอร์ " -"ลองอ่านคำแนะนำ ที่นี่ ด้วยนะ" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "ดาวน์โหลด Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"ซอฟท์แวร์ชิ้นนี้เป็นแบบ pre-release และได้รับการสนับสนุนโดย Server Working Group กรุณาสอบถามผ่าน mailing list หรือห้อง %(team_irc)s ที่ freenode" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"ลองอ่าน Release Notes " -"เพื่อดูรายละเอียดข้อเปลี่ยนแปลงและฟีเจอร์ใหม่ ๆ และอ่านหน้า บั๊กที่พบบ่อย " -"สำหรับข้อมูลเกี่ยวกับบั๊กที่มักพบกันบ่อย ๆ และวิธีการหลีกเลี่ยงมัน" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Fedora %s จะออกเมื่อไหร่?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "ดูวันที่สำคัญในตารางการออกเวอร์ชั่น..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Linux workstation ที่คุณรอคอย อยู่ที่นี่แล้ว" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation คือระบบปฏิบัติการที่เชื่อถือได้ ใช้งานง่าย " -"และทรงพลังสำหรับเครื่องแล็ปท็อปหรือเดสก์ท็อปของคุณ มันเหมาะกับนักพัฒนาทุกคน" -" ไม่ว่าจะเป็นมือสมัครเล่น นักศึกษา ไปจนถึงมืออาชีพในองค์กร" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"“เครื่องมือที่มากับ
Fedora ช่วยให้ผมทำงานได้เร็วขึ้น
" -"มันเวิร์คมาก”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM performance engineer" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "User interface ที่ลื่นไหล" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"เดสก์ท็อป GNOME 3 ถูกสร้างขึ้นมาจากคำแนะนำของนักพัฒนา " -"จึงทำให้คุณสามารถมีสมาธิอยู่กับโค้ดของคุณ เพื่อทำให้คุณทำงานได้อย่างเต็มที่" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "เครื่องมือ open source เต็มร้อย" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"ไม่ต้องกังวลเรื่องค้นหาเครื่องมือที่คุณต้องใช้อีกแล้ว เพราะ Fedora " -"มาพร้อมกับภาษาและเครื่องมือ open source ครบชุด นอกจากนั้นยังมี project " -"hosting และ repository เช่น COPR ซึ่งทำให้คุณเขียนโค้ดได้เร็วยิ่งขึ้น" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes และ virt tool อื่น ๆ" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"เริ่มใช้งาน virtual machine ได้อย่างรวดเร็วและง่ายดาย ด้วย GNOME Boxes " -"หรือใช้เครื่องมือ virtualization อันทรงพลังเพื่อการควบคุมขั้นสูง" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "มาพร้อมกับการสนับสนุน Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"เอาแอพฯคุณใส่ container และ deploy บน Fedora ด้วยเทคโนโลยีล่าสุดอย่าง Docker" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "พร้อมลองใช้ Fedora เวิร์คสเตชั่นรึยัง?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "ดาวน์โหลด Fedora เวิร์คสเตชั่น" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "ดาวน์โหลด Fedora %(rel)s เวิร์คสเตชั่น" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Netinstall Images:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora แล็บ" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "ดาวน์โหลด Fedora เวิร์คสเตชั่น %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "ดาวน์โหลด Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"ซอฟท์แวร์ชิ้นนี้เป็นแบบ pre-release และได้รับการสนับสนุนโดย Workstation Working Group " -"ถ้ามีคำถามกรุณาติดต่อที่ mailing list หรือห้อง" -" %(team_irc)s ที่ freenode" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "สถาปัตยกรรม" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root store" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "เริ่มใช้งาน AMI instance" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "เลือกพื้นที่ที่ใกล้ที่สุด" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "เริ่มใช้งานเลย!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "กฎหมายควบคุมการส่งออก" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "อ่านกฏหมายควบคุมการส่งออกฉบับเต็ม" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "ในการดาวน์โหลด Fedora คุณตกลงยอมรับเงื่อนไขดังต่อไปนี้" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "อ่านเพิ่ม >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "เกี่ยวกับ" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "เกี่ยวกับ Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "สปอนเซอร์" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "นิตยสาร Fedora" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "ทางกฏหมาย" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "ดาวน์โหลด Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "ดาวน์โหลด Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "การสนับสนุน" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "ขอความช่วยเหลือ" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "ถาม Fedora สิ" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "บั๊กที่พบบ่อย" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "คู่มือการติดตั้ง" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "เข้าร่วม" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "เข้าร่วมกับ Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "ระบบ Fedora Account System" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "ชุมชน Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora ได้รับการสนับสนุนโดย Red Hat" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับความสัมพันธ์ระหว่าง Red Hat และ Fedora" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. และอื่น ๆ" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "เปลี่ยนภาษา" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "ตกลง" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "เล็ก ทรงพลัง และพร้อมสำหรับ Everycloud" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "เทคโนโลยีล่าสุด บนพื้นฐานที่มั่นคง สำหรับแอพพลิคชั่นของคุณ" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "เอกสารและแหล่งข้อมูลอื่น ๆ" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "วิธีการหา media แบบอื่น" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"คุณสามารถซื้อ installation media สำหรับ Fedora จาก ร้านค้าออนไลน์ หรือ ร้านค้าในละแวก " -"ใกล้เคียงของคุณ" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"ไม่สามารถสั่งซื้อ installation media ได้? คุณสามารถขอ Fedora installation " -"media ได้จาก Fedora Free Media Program" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG Key Information" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Key ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Fingerprint" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "เอาจาก:" diff --git a/getfedora.org/po/tl.po b/getfedora.org/po/tl.po deleted file mode 100644 index fb750a2..0000000 --- a/getfedora.org/po/tl.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora-web/language/tl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: tl\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/tr.po b/getfedora.org/po/tr.po deleted file mode 100644 index 9c43fea..0000000 --- a/getfedora.org/po/tr.po +++ /dev/null @@ -1,2714 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Akın Ömeroğlu , 2015 -# Muhammet Kara , 2014 -# Akın Ömeroğlu , 2015. #zanata -# Akın Ömeroğlu , 2016. #zanata -# Emin Tufan Çetin , 2016. #zanata -# Onuralp SEZER , 2016. #zanata -# Emin Tufan Çetin , 2017. #zanata -# Emin Tufan Çetin , 2018. #zanata -# Muhammet Kara , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-01 03:54-0400\n" -"Last-Translator: Muhammet Kara \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" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora Yönetim Kuralları" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora'nın Yönetim Kuralları" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Bir topluluk üyesi olabilmek için Davranış Kuralları'nı (Code of Conduct) " -"takip edin." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Yönetim Kuralları" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora topluluğu dağıtımın kodlamasından pazarlamasına kadar farklı " -"alanlarda çalışan uzmanlar ve gönüllerden oluşan bir karışımdır. Çeşitlilik " -"bizim en güçlü yanlarımızdan biri olup zaman zaman ayrıca iletişim " -"sorunlarına ve mutsuzluğa yol açmaktadır. Bu amaçla, tasarı kaynaklarını " -"kullanırken insanların uymasını istediğimiz az sayıda temel kural " -"bulunmaktadır. " - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Bu yapamayacaklarınızın etraflıca bir listesi değildir. Bunun yerine, bu " -"kuralları herkesin birbirine en iyi şekilde davranması için hazırlanmış bir " -"rehber olarak kabul edebilirsiniz." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Anlayışlı olun. Çalışmalarınız başkaları tarafından kullanılacak ve siz de " -"başkalarının çalışmalarını kullanacaksınız. Kullanıcıları ve çalışma " -"arkadaşlarınızı etkileyecek bir karar almadan önce sonuçlarını dikkate " -"almalısınız." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Saygılı olun. Hiçbirimiz her zaman birbirimizle anlaşmıyoruz ama " -"anlaşmazlıklar kötü davranışlar ve kötü bir tarzın bahanesi olamaz. Şimdi ve" -" gelecekte hepimiz bazı hayal kırıklıkları yaşayabiliriz ama hayal " -"kırıklıklarının kişisel bir saldırıya dönüşmesine izin veremeyiz. Şunu " -"unutmamalıyız; insanların kendilerini rahatsız ya da tehdit altında " -"hissettiği bir topluluk verimli bir topluluk değildir. Fedora topluluğunun " -"üyeleri birbirleriyle ya da Fedora topluluğu dışındaki insanlarla ve Fedora " -"kullanıcıları ile ilişkilerinde saygılı olmalıdır." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Anlaşamadığımız durumlarda bunun nedenini anlamaya çalışırız. Hem teknik hem" -" de sosyal anlaşmazlıklar her zaman olmaktadır ve Fedora bir istisna " -"değildir. Önemli olan anlaşmazlıkları ve farklı bakış açılarını yapıcı bir " -"şekilde çözmemizdir." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Unutmayın ki bizler birbirimizden farklıyız. Fedora'nın gücü topluluğun " -"çeşitliliğinden ve geçmişi birbirinden çok farklı olan insanlardan " -"gelmektedir. Farklı insanlar sorunlar üzerinde farklı bakış açılarına " -"sahiptir. Bir kişinin sahip olduğu bakış açısını anlamamanız onların hatalı " -"olduğu anlamına gelmez. Unutmayın ki insanlar hata yapabilir ve " -"hatalarımızdan ders almak ve sorunları çözmek yerine birbirimizi suçlamak " -"bizleri bir noktaya getirmeyecektir." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Fedora'yı Edinin: geliştirici masaüstleri, konteynerleri çalıştırma ve daha " -"çoğu için Linux tabanlı işletim sistemimizi indirin" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Özgürlüğü seç. Fedora'yı seç." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Daha az kurulum, daha çok yenilik. Gereksinimleriniz için geliştirilmiş

bir Fedora türünü seçin ve hemen çalışmaya başlayın." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Fedora %(rel)s %(state)s yayımlandı! İndirme bölümünden " -"deneyebilirsiniz." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s yayımlandı! Şimdi al." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "İş İstasyonu" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Şimdi İndir" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora İş İstasyonu, masaüstü ve dizüstü bilgisayarlar için kolay kullanımlı" -" bir işletim sistemini geliştirici ve meraklılar için gerekli tüm araçlar ve" -" destekle birlikte sunar." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Şimdi indir" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Sunucu" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Sunucu, en iyi ve son veri merkezi çözümlerini barındıran güçlü ve " -"esnek bir işletim sistemidir. Tüm altyapınızın ve hizmetlerinizin denetimi " -"artık elinizde!" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic, Linux-Docker-Kubernetes uygulama yığınınız için en iyi " -"platformu sağlar." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora herkesin kullanımına, değiştirmesine ve dağıtmasına açıktır. Dünya " -"çapında insanların bir araya geldiği Fedora Tasarısı ile inşa edilir ve " -"kullanılır." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Daha çok Fedora seçeneği mi istiyorsunuz?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora topluluğu ayrıca ARM " -"görüntüleri, değişik canlı Spinler ve Fedora'nın belirli gereksinimlere " -"uygun hale getirilmiş diğer çeşitlemelerini yayımlar. Bunlara Fedora Spinleri ya da Fedora Labları web sitesinden " -"göz atabilirsiniz." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Bağlı ol & haberdar ol." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Katılmak mı istiyorsunuz? Toplulukta ne olduğunu" -" keşfetmek mi istiyorsunuz? Fedora " -"Magazini'nde son haberler ve harika şeyler üzerinde araştırma yapın." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Belgeleri okuyun." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Şimdiki sürüm üzerinde ayrıntılı bilgiler için Sürüm Notlarını gözden " -"geçirin. Fedora kullanımı ve sistem gereksinimleri gibi ayrıntılı bilgiler " -"hakkında daha çoğunu öğrenmek için resmi " -"belgelendirmeye bakın." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Yardım alın." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Fedora'da yardıma mı gerek duyuyorsunuz? Diğer kullanıcıların sorularının " -"olduğu arşivi okuyabileceğiniz ya da kendi sorunuzu sorabileceğiniz Ask Fedora'yı gözden geçirin." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora Sponsorları" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" -"Fedora Tasarısı aşağıda yer alan kuruluşların sponsorluğundan gurur duyar..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Ana Sponsor" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. Fedora Tasarısı'nın ana sponsorudur. Red " -"Hat, Fedora Tasarısı için tam zamanlı eleman, altyapı donanımı ve bant " -"genişliği, etkinlik sponsorluğu ve yasal danışmanlığı da içeren çok sayıda " -"kaynak sağlamaktadır." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Fedora Tasarısı önemli desteklerinden dolayı aşağıdaki sponsorlarına da " -"teşekkür eder:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Fedora'ya sponsor olmakla mı ilgileniyorsunuz?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"admin@fedoraproject.org adresiyle bağlantıya " -"geçin ya da irc.freenode.net sunucusundaki #fedora-" -"admin kanalına uğrayın." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "İndirdiğiniz Görüntüyü Doğrulayın" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM ve Doğrulama Yönergesi" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Görüntümü nasıl doğrularım?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Görüntüyü indirdiğinizde güvenlik ve doğruluk için görüntüyü doğrulayın. " -"Görüntüyü doğrulamak için indirdiğiniz dosyayla ilişkili CHECKSUM dosyasını " -"da indirin ve görüntünüzle aynı dizine kaydedin." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "64-bit görüntüler için" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "32-bit görüntüler için" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Atomic Host Iso'su için" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Atomic Host görüntüleri için" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Daha sonra, Fedora'nın GPG anahtar(lar)ını içe aktarın:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"GPG anahtar(lar)ının ayrıntılarını buradan " -"doğrulayabilirsiniz." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Şimdi, CHECKSUM dosyasının geçerli olduğunu doğrulayın:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" -"CHECKSUM dosyası şu anahtarlardan biriyle geçerli olarak imzalanmış " -"olmalıdır:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "Fedora 26 ikincil mimariler (AArch64, PPC64, PPC64le, s390 ve s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Son olarak, CHECKSUM dosyası doğrulandığına göre görüntü checksum sonucu ile" -" uyuştuğunu denetleyin:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Eğer çıktı dosyanın geçerli olduğunu doğruluyorsa artık kullanıma hazır " -"demektir!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" -"İndirdiğim görüntünün doğruluğunu başka bir işletim sisteminde nasıl " -"denetleyebilirim?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Fedora Atomic'i Edinin: konteynerlenmiş uygulama yığınlarınız için en iyi " -"platform" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Konteynerlenmiş uygulamalarınızı kararlı alt yapıyla ölçeklendirin ve " -"devreye alın." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "İndir veya Genel Bulutta Başlat" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Project Atomic'ten Atomic Host; hızlı, kararlı, tek amacı konteynerlenmiş " -"uygulamaları çalıştırmak olan bir platformdur." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Fedora'nın Atomic Host sürümü, Fedora Sunucusu ile aynı paket depolarını " -"kullanır ve Atomic'in en son sürümlerini sağlar." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree Güncellemeleri" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Docker konteynerlerini, sistem konteynerlerini, Atomic Uygulamaları ve daha " -"çoğunu tek bir komut satırı aracı kullanarak yönetin." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Kubernetes ve OpenShift İçin En İyi Hale Getirilmiştir" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Konteynerlenmiş uygulamalarınızı çalıştırmak için Kubernetes veya Origin " -"kümesi mi inşa ediyorsunuz? Onları, gereksindiğiniz platformu size küçük ve " -"ince bir işletim sistemiyle sunan Fedora Atomic üzerinde çalıştırın." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Fedora Atomic'i denemeye hazır mısınız?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Fedora'yı İndirdiğiniz İçin Teşekkürler!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"İndirme işlemi birkaç saniye içinde başlayacaktır. Eğer başlamazsa, " -"aşağıdaki bağlantıya tıklayın:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "İndirmenizi Doğrulayın!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Görüntü indirdiğinizde güvenlik ve doğruluk için görüntüyü doğrulayın. " -"Görüntünüzü doğrulamak için indirdiğiniz dosyayla ilişkili CHECKSUM " -"dosyasını da indirin ve görüntünüzle aynı dizine kaydedin ve bu yönergeleri uygulayın." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Fedora Atomic'i İndir" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host Görüntüleri" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 Biçimi" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Kapat" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Bölge" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Çalıştır" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Standart Biçim)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Standart HVM,AMI'ler" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Standart Biçim" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Vagrant için Atomic Host Görüntüleri" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Vagrant İndirmelerini Gör" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant Görüntüsü İndirmeleri" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox Görüntüsü" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Eğer Mac OS X veya Windows üzerinde Vagrant kullanıyorsanız, bu kullanmak " -"isteyeceğiniz görüntü olabilir." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "İndir" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-bit %sMB VirtualBox Temel Vagrant Görüntüsü" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM Görüntüsü" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" -"Eğer Fedora üzerinde Vagrant kullanıyorsanız, bu kullanmak isteyeceğiniz " -"görüntüdür." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-bit %sMB libvirt/KVM Temel Vagrant Görüntüsü" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Vagrant Box görüntülerini HashiCorp'un Atlas'ından elde " -"etmek için şu komutu kullanabilirsiniz." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Fedora İş İstasyonu üzerinde Vagrant çalıştırmak hakkında daha çok bilgi " -"için, wiki sayfamızı görün." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Bulut Ortamları için Atomic Host Görüntüleri" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 Görüntüsü" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Bu, OpenStack ile kullanmak için Qcow2 biçimindeki Fedora %(rel)s Bulut " -"Atomic Host görüntüsüdür." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-bit %sMB Qcow2 Görüntüsü" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Ham Görüntü" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-bit %sMB xz-Sıkıştırmalı Ham Görüntü" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Diğer İndirmeler" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO görüntüsü (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Sürüm öncesini dene" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Sonraki sürümümüz üzerinde çalışıyoruz." - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "F%(rel)s'i hazırlamamıza yardım edin!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "F%(rel)s %(state)s görüntülerini indir" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Sürüm önceleri nasıl denenir" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Kaynaklar" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: Başlarken" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: Posta Listesi" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC Konuşması" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"irc.freenode.org üzerindeki Project Atomic kanalı " -"#atomic'e katıl." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Doğrulayın" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Görüntünüzü doğrulayın" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Fedora %(rel)s %(state)s Atomic Host'u İndir" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Tüm sorunlar ve hatalar Red Hat Bugzilla aracılığıyla " -"bildirilmelidir. Fedora Tasarısı uygunluk ya da kullanışlılık hakkında bir " -"garanti vermemektedir." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Tasarısı - Sayfa Bulunamadı" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: Sayfa Bulunamadı" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Özür dileriz ama istediğiniz sayfa ya da dosya bulunamadı." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Sorun Çözme Önerileri" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Adresi elle girdiyseniz lütfen tekrar denetleyin. Doğru kopyaladığınızdan " -"emin misiniz?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Kırık bağlantı? Webmaster ile iletişime geçin ve hangi " -"linkin sizi bu sayfaya getirdiğini söyleyin." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Sayfa ya da dosya taşınmış olabilir. Ana sayfamıza " -"bakın ya da href=\"%(wiki)s\">Wiki sayfalarımızda arama yapın" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Paket İmzalama Anahtarları" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"Bu sayfa Fedora'da yer alan paketleri imzalamayı sağlayan genel GPG " -"anahtarlarını listeler" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Fedora'nın sizi nasıl koruduğunu öğrenin." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"Fedora paket bütünlüğünün değiştirilmediğinden emin olmak için GPG paket " -"imzalama teknolojisini kullanır." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Daha çoğunu öğrenmek için sık sorulan sorulara göz atın" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Şu anda kullanılan anahtarlar" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Birincil" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "İkincil" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Kullanılmayan anahtarları mı arıyorsunuz?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Kullanılmayan Paket İmzalama Anahtarları" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"Bu sayfa Fedora'da yer alan paketleri imzalayan ve artık kullanılmayan genel" -" GPG anahtarlarını listeler." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Kullanılmayan anahtarlar" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG anahtarı" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 testing" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora Test" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 Test" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 Test" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Ekstraları" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Paket İmzalama SSS" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Fedora'nın güvenliğinizi sağlamak için GPG'yi paket imzalamakta nasıl " -"kullandığını öğrenin." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Fedora Tasarısı paketleri imzalamak için GPG'yi nasıl kullanıyor?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Koji inşa sisteminden indirilebilen paketler imza içermezler, onları " -"dikkatle kullanmalısınız. Benzer olarak, Rawhide'daki deneysel paketlerin " -"imzalanması zorunlu değildir." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Anahtarları içe aktarmak" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" -"Bir anahtarı RPM veri tabanına dahil etmek için her zaman takip eden komutu " -"kullanabilirsiniz." - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" -"Daha çok bilgi için rpm kullanma kılavuzuna bakabilirsiniz." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Fedora Sunucu'yu Edinin: uygulamalarınız ve hizmetleriniz için en son " -"teknoloji" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Sunucu" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Kolay Yönetim" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Sistemlerinizi Cockpit'in güçlü ve çağdaş arayüzü ile kolayca yönetin. " -"Sistem veriminizi görüntüleyip izleyebilir ve konteyner tabanlı " -"hizmetlerinizi devreye alıp yönetebilirsiniz." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Veri Tabanı Hizmetleri" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Sunucu açık kaynaklı PostgreSQL tasarısı tarafından desteklenen " -"kurumsala hazır, ölçeklenebilir veri tabanı sunucusu ile birlikte " -"gelmektedir." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Tam Kurumsal Dizin Yönetimi" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Fedora Sunucu'yu denemeye hazır mısınız?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Fedora Sunucu indir" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Fedora %(rel)s Sunucu indir" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-bit %sGB kurulum görüntüsü" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"Fedora Sunucu kurulum görüntüsü Fedora Sunucu'yu doğrudan diskinize kurmaya " -"yarayan ortamı oluşturmanızı sağlar" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Bu görüntüyü kullanmak için DVD yazabilen bir sürücüye ya da en azından " -"görüntü büyüklüğünde bir USB belleğe ihtiyacınız olacak." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Ağdan Kurulum Görüntüsü:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-bit %sMB görüntü" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "F%(rel)s Alpha görüntülerini indir" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "F%(rel)s Beta görüntüleri indir" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Daha çok Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® Teknolojisi" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "Canlı görüntüyü nasıl çalıştırılabilir bir ortama dönüştürebilirim?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Görüntüyü indirdikten sonra ondan çalıştırılabilir ortam yapacaksınız. " -"İsterseniz görüntüyü boş bir DVD diskine yakabilir veya " -"görünütüyü bir USB flash sürücüye yazabilirsiniz." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Bilgisayarımı ortamdan nasıl başlatabilirim?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Dahili sabit disk dışında başka bir ortamdan başlatma yöntemi içinn " -"bilgisayar sisteminizin belgelendirmesine başvurun. Süreç, üreticiye ve " -"bilgisayarınızın modeline bağlı olarak başkalaşabilir. Bu ortak" -" ipuçlarını kullanışlı bulabilirsiniz." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Fedora %(rel)s %(state)s Sunucu'yu İndir" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-bit %sGB Kurulum Görüntüsü" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Bu sürüm öncesi yazılımdır ve Sunucu Çalışma " -"Kümesi tarafından desteklenir. Soruları doğrudan postalaşma listesine veya freenode üzerindeki " -"%(team_irc)s kanalına yöneltin." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Yeni özellikler ve değişikliklerle ilgili Sürüm" -" Notlarını ve ortak olarak karşılaşılan sorunları ve onları nasıl " -"gidereceğinizla ilgili Ortak Hataları " -"okuyun." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Fedora %s ne zaman yayımlanacak?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Sürüm takviminin tüm önemli kilometre taşlarını okuyun..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Görüntü indirdiğinizde güvenlik ve doğruluk için görüntüyü doğrulayın. " -"Görüntünüzü doğrulamak için indirdiğiniz dosyayla ilişkili CHECKSUM " -"dosyasını da indirin ve görüntünüzle aynı dizine kaydedin ve bu yönergeleri uygulayın." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Fedora İş İstasyonu'nu Edinin: yazılım geliştiricileri için en iyi masaüstü " -"işletim sistemi" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Beklediğiniz Linux İş İstasyonu." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora İş İstasyonu, masaüstü ya da dizüstü bilgisayarınız için güçlü, " -"kullanıcı dostu ve güvenilir bir işletim sistemidir. Öğrencilerden " -"meraklılara ve kurumsal uzmanlara kadar çok sayıda geliştirici için " -"bileşenler bulundurur." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"\"Fedora'nın sunduğu çok sayıda araç işimi yapmamı sağlıyor. Tam olması " -"gerektiği gibi.\"" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM Performans Mühendisi" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Zarif kullanıcı arayüzü" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"GNOME 3 masaüstü ortamıyla kodunuza odaklanın. GNOME geliştiricilerden gelen" -" yorumlarla dikkatinizi dağıtmayacak şekilde tasarlandı. Bu sayede sizin " -"için gerçekten önemli olan şeylere odaklanabilirsiniz." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Eksiksiz açık kaynak araç takımı" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Gereksindiğiniz araçları aramaktan ya da inşa etmekten vazgeçin. Fedora'nın " -"açık kaynak kodlu dilleri, araçları ve yardımcı programları için tam seti " -"sayesinde aradığınız her şey bir tık ya da komut uzağınızda. COPR gibi " -"kodunuzu ve inşalarınızı kolayca toplulukla paylaşabileceğiniz araçlar bile " -"depomuzda!" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "Gnome Kutular ve diğer sanallaştırma araçları" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"Kodunuzu daha çok platformda deneyebilmek için GNOME Kutular ile sanal " -"makineleri kolayca kurun ve çalıştırın. Daha ayrıntılı denetim için güçlü ve" -" özelleştirebilir sanallaştırma araçlarını da deneyebilirsiniz." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Dahili Docker desteği" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Docker gibi son teknolojileri kullanarak, uygulamalarınızı konteyner haline " -"getirin ya da Fedora'dan çıkan konteyner uygulamaları devreye alın." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Fedora İş İstasyonu'nu denemeye hazır mısınız?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Fedora İş İstasyonu indir" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Fedora %(rel)s İş İstasyonu indir" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Mac OS X için Fedora Ortam Yazıcı" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "Linux için 64-bit %s GB ISO." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Windows için Fedora Ortam Yazıcı" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "İşletim sisteminiz için Fedora Ortam Yazıcı'yı indirin." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Yönergeler mi gerekiyor? Ya da farklı bir sürüm mü?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Fedora İş İstasyonu'nu Çalıştırmak" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Fedora İş İstasyonu'nu çalıştırmak için şunlara gereksineceksiniz:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Ortam Yazıcı (yukarıdan indirin)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "%s GB boş alanı olan bir USB Flash sürücü" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"İsterseniz, Fedora İş İstasyonu'nu en az 1 GHz işlemci, 1 GB RAM ve 10 GB " -"boş alanı olan bir dizüstü ya da masaüstü bilgisayara kurabilirsiniz. Bunu " -"yapmak için; kurmak istediğiniz bilgisayarda USB flash sürücünüzden Fedora " -"İş İstasyonu'nun canlı sürümünü çalıştırın, Fedora Ortam Yazıcı uygulamasını" -" çalıştırın ve ekran yönlendirmelerini takip ederek kurulumu tamamlayın." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Desteklenen Düzlemler" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Ortam Yazıcı şu düzlemleri destekler:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Mac OS X kullandığınızı saptadık ve indirme için o sürümü " -"önerdik. Eğer işletim sisteminizi yanlış saptadıysak ya da siz başka bir " -"sürümü indirmek isterseniz, lütfen aşağıdaki \"Tüm düzlem indirmelerini " -"gör\" düğmesine basın." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Linux kullandığınızı saptadık ve indirme için o sürümü " -"önerdik. Eğer işletim sisteminizi yanlış saptadıysak ya da siz başka bir " -"sürümü indirmek isterseniz, lütfen aşağıdaki \"Tüm düzlem indirmelerini " -"gör\" düğmesine basın." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Windows kullandığınızı saptadık ve indirme için o sürümü " -"önerdik. Eğer işletim sisteminizi yanlış saptadıysak ya da siz başka bir " -"sürümü indirmek isterseniz, lütfen aşağıdaki \"Tüm düzlem indirmelerini " -"gör\" düğmesine basın." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Tüm düzlem indirmelerini gör" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Fedora için DNF aracılığıyla elde edilebilir" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Ayrıntılar" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Bu ISO nasıl kullanılır?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Bu görüntüyü doğrula" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-bit %sGB Canlı görüntü" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-bit %sGB Canlı görüntü" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Ağdan Kurulum Görüntüleri:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-bit %sMB görüntü" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-bit %sGB Atomic kalıbı" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Daha fazlasını öğrenin" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "Sürüm Duyurusu" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "Fedora Magazini'nde tam Sürüm Duyurusunu oku." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Sürüm Notları" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Fedora'nın önceki sürümünden beri değişenleri, aynı zamanda asgari " -"gereksinimleri ve Fedora'yı çalıştırmak için önerilenleri öğren." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "Kurulum Rehberi" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Birçok ortak soruyu yanıtladığından, sisteminize kurmadan önce buna göz " -"atmanızı öneririz." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Ortak Hatalar" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Fedora'yı kurarken ve çalıştırırken yaşayacağınız herhangi bir sorunda " -"başvurabileceğiniz mükemmel bir kaynak." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "\"Canlı\" ne demektir?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Ortam Yazıcı bir USB sürücüden hemen çalıştırabileceğiniz tam ve " -"çalışan bir Fedora İş İstasyonu oluşturacaktır. Canlı görüntüyü sabit " -"diskinize değişiklik yapmadan Fedora ile oynamak ve denemek için " -"kullanabilirsiniz." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Hazır olduğunuzda, Fedora İş İstasyonu'nun bu \"canlı\" sürümü ile Fedora'yı" -" sabit diskinize kurabilirsiniz." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spinleri" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labları" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Fedora İş İstasyonu %s indir" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Fedora %(rel)s %(state)s İş İstasyonu indir" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Bu sürüm öncesi yazılım İş İstasyonu Çalışma " -"Grubu tarafından desteklenmektedir. Lütfen sorularınızı doğrudan e-posta listesine ya da freenode sunucusundaki " -"%(team_irc)s kanalına gönderin." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Fedora İş İstasyonu'nun Sürüm Öncesi Sürümlerini Çalıştırmak" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Fedora İş İstasyonu'nun sürüm öncesi sürümünü çalıştırırken şunlara " -"gereksineceksiniz:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Ortam Yazıcı (Aşağıdan indirilebilir)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Çalıştırmak istediğiniz Fedora'nın sürüm öncesi sürümünün bir" -" canlı ISO görüntüsü" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"UYARI: Bu yöntem USB ortamınızdaki tüm veriyi yok eder. Bunu yapmadan önce " -"USB ortamınızdan tüm önemli dosyalarınızı yedeklediğinize emin olun." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Aşağıdan Fedora Ortam Yazıcı uygulamasını indirin." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "İstediğiniz ISO görüntüsünü indirin." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Fedora Ortam Yazıcı uygulamasını açın. Uygulamaya doğru izinleri vermek için" -" parola girmeniz gerekebilir." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Listeden \"Özel İS...\"yi seçin." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "Özel İS sayfasında, \"Canlı ISO seç\" düğmesini seçin." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" -"Dosya seçme penceresinde, indirdiğiniz ISO görüntüsünü bulun ve seçin." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"USB çubuğunuzu bilgisayara yerleştirin. Eğer USB çubuğunuzu daha önceden " -"canlı ortam oluşturmak için kullandıysanız, fabrika ayarlarına geri " -"döndürmeniz gerekebilir. Uygulama size bu durumda ne yapılacağını " -"soracaktır." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Ortamı yazdırmak için \"Canlı USB Oluştur\"u seçin. Ortamı çıkarmadan ve " -"uygulamayı kapatmadan önce işlem tamamlanana dek bekleyin." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Sürüm önceleri nasıl sınanır?" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Fedora'nın sürüm öncesi sürümlerinin sınanmasına nasıl yardım edilir " -"hakkındaki Fedora wiki kılavuzu." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Mimari" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "AMI " - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "En yakın bölgeyi seçin" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-bit (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-bit (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Çalıştırın!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "İhracat Düzenlemeleri" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Tüm ihraç düzenlemelerini okuyun" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Buraya tıklamakla ve Fedora'yı indirmekle şartlar ve koşullara uyacağınızı " -"kabul edersiniz." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Daha çoğunu oku >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Hakkında" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Fedora Hakkında" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Sponsorlar" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazini" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Yasal" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Fedora İş İstasyonu'nu Edin" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Fedora Sunucu'yu Edin" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Fedora Atomic'i Edin" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Alternatif İndirmeler" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Destek" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Yardım al" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Ask Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Ortak Hatalar" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora Geliştirici Portalı" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Kurulum Rehberi" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Katıl" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Fedora'ya Katıl" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Fedora Gezegeni" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGleri" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora Hesap Sistemi" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora Topluluğu" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora, Red Hat tarafından desteklenmektedir." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Red Hat ve Fedora arasındaki ilişkiyle ilgili daha çoğunu öğrenin" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. ve diğerleri." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Lütfen herhangi bir yorumu ya da düzeltmeyi websiteler takımına gönderin." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Dili Değiştir" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Tamam" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Daha çok \"Fedora var" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Hafif. Güçlü. Tüm bulutlar için hazır." - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" -"Son teknoloji. Kararlı temel. Uygulama ve hizmetleriniz için bir arada." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Belgelendirme ve diğer kaynaklar" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Ortamı elde etmenin diğer yolları" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Çevrim içi satıcılardan ya da bölgenizdeki bir yerel satıcıdan Fedora için kurulum ortamı satın " -"alabilirsiniz." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Kurulum ortamının ücretini karşılayamıyor musunuz? Kurulum ortamını Fedora Ücretsiz Ortam Programı'ndan isteyin." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG Anahtarı Bilgileri" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Anahtar Kimliği" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Parmak İzi" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Şuradan edin:" diff --git a/getfedora.org/po/tw.po b/getfedora.org/po/tw.po deleted file mode 100644 index e9aceae..0000000 --- a/getfedora.org/po/tw.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Twi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tw\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/uk.po b/getfedora.org/po/uk.po deleted file mode 100644 index e6d59ad..0000000 --- a/getfedora.org/po/uk.po +++ /dev/null @@ -1,2878 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Yuri Chornoivan , 2014 -# Yuri Chornoivan , 2015. #zanata -# Yuri Chornoivan , 2016. #zanata -# Владислав , 2016. #zanata -# Robert Mayr , 2017. #zanata -# Yuri Chornoivan , 2017. #zanata -# Yuri Chornoivan , 2018. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2018-05-14 05:28-0400\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" -"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" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Кодекс поведінки Fedora" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Кодекс поведінки Fedora" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" -"Поводьтеся як учасник чи учасниця спільноти, зважайте на кодекс поведінки." - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "Кодекс поведінки" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Спільнота Fedora складається з професіоналів та добровольців з усього світу." -" Всі ці люди працюють над найрізноманітнішими аспектами дистрибутива: від " -"програмування до маркетингу. Різноманітність є однією з найбільших чеснот " -"дистрибутива, але вона також може іноді призводити до негараздів під час " -"спілкування та незадоволеності роботою інших учасників спільноти. Щоб " -"запобігти цьому, нами створено декілька основних правил, якими варто " -"керуватися всім, хто користується ресурсами проекту." - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" -"Тут, звичайно ж, викладено неповний список того, що не можна роботи. Вам " -"слід поводитися у дусі наведених нижче настанов, — посібника, який полегшить" -" ваші відносини у межах спільноти." - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"Будьте уважними до інших учасників спільноти. Вашою роботою " -"користуватимуться інші, а ви, відповідно, користуватиметеся роботою інших " -"учасників. Будь-яке з ваших рішень може торкнутися користувачів та ваших " -"колег, отже під час прийняття рішень варто зважати на наслідки цих рішень " -"для інших учасників спільноти." - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"Поважайте думку інших учасників. Дійти згоди вдається далеко не завжди, але " -"незгода з певними рішеннями не є причиною для неввічливості чи поганих " -"манер. Всім нам іноді прикро через певні ситуації, але подібні прикрощі аж " -"ніяк не можуть бути причиною для особистих образ. Важливо пам’ятати, що " -"спільнота, у якій люди почуваються зайвими і постійно зазнають погроз, не " -"може бути продуктивною. Учасники спільноти Fedora мають ставитися з повагою " -"до інших учасників спільноти та до інших людей, які не є учасниками " -"спільноти Fedora, або простих користувачів Fedora." - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"Якщо виникає незгода, слід намагатися зрозуміти її причини. Незгода, " -"соціальної чи технічної природи, виникає завжди, Fedora не є винятком. " -"Важливим є те, що у нашому проекті ми намагаємося подолати незгоди і " -"конструктивно розглянути усі точки зору." - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"Пам’ятайте про те, що всі ми різні. Сила Fedora полягає в усій " -"різноманітності спільноти, у об’єднаних зусиллях людей з зовсім різними " -"умовами життя. Різні люди мають різні точки зону на проблеми. Те, що ви не " -"можете зрозуміти причин того, чому інші люди тримаються певної точки зору, " -"не означає що всі ці люди помиляються. Пам’ятайте, що людям властиво " -"помилятися, а образи не призводять до бажаних наслідків. До успіху веде " -"допомога у вирішенні проблем та постійне навчання на помилках." - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" -"Отримайте Fedora — нашу засновану на Linux операційну систему для роботи " -"розробників, запуску контейнерів та інших речей" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "Виберіть свободу. Виберіть Fedora." - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" -"Менше налаштовування, більше інновацій. Виберіть варіант Fedora,

" -" який призначено саме для ваших потреб, і одразу почніть працювати." - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" -"Випущено Fedora %(rel)s %(state)s! Зверніться до розділу " -"«Отримання»." - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Випущено Fedora %(rel)s! Отримайте нову версію." - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Робоча станція" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "Отримати зараз" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation — елегантна, проста у користуванні операційна система для" -" ноутбуків і стаціонарних комп’ютерів з повним набором інструментів для " -"розробників та будь-кого, хто працює за комп’ютером." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "Отримати зараз" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Сервер" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" -"Fedora Server — потужна, гнучка операційна система, у якій реалізовано " -"найкращі і найсучасніші технології зберігання та обробки даних. За її " -"допомогою ви зможете керувати усіма вашими елементами інфраструктури та " -"службами." - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" -"Fedora Atomic є найкращою платформою для вашого стосу програм Linux-Docker-" -"Kubernetes (LDK)." - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora вільна для використання, змін та розповсюдження для будь-ким і будь-" -"коли. Її створено людьми з усього світу, які створюють систему і " -"користуються нею, єдиною спільнотою: Проектом Fedora." - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "Потрібні інші варіанти Fedora?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Крім того, спільнота Fedora випускає образи ARM, альтернативні образи" -" портативних систем та інші варіанти Fedora спеціально пристосовані для " -"виконання певних завдань. Знайти посилання на ці образи можна на сторінці варіантів або сайті Fedora Labs." - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "Перебувайте на зв’язку і дізнавайтеся першими." - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"Хочете стати частиною " -"проекту? Хочете знати більше про те, що відбувається у спільноті? Почитайте " -"про останні новини і цікаві речі у Fedora Magazine." - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "Ознайомтеся із документацією." - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"Ознайомтеся із нотатками щодо випуску, щоб дізнатися більше про поточний " -"випуск. Докладніший опис користування Fedora та дані щодо вимог до " -"обладнання наведено у офіційній " -"документації." - -#: data/content/index.html:243 -msgid "Get help." -msgstr "Отримайте допомогу." - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Потрібна допомога у роботі з Fedora? Зверніться до системи Ask Fedora, за допомогою якої ви можете ознайомитися із " -"архівом відповідей на питання інших користувачів або задати власне питання." - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Спонсори Fedora" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Проект Fedora пишається своїми спонсорами, серед яких:" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "Головний спонсор" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. є головним спонсором Проекту Fedora, що " -"забезпечує всебічну підтримку, допомогу співробітників компанії, надаючи " -"обладнання та мережні ресурси, фінансування конференцій та юридичну " -"підтримку." - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" -"Проект Fedora також вдячний цим спонсорам за надання істотної підтримки:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "Зацікавлені у спонсоруванні Fedora?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"Надішліть повідомлення на адресу admin@fedoraproject.org або зайдіть на #fedora-admin на irc.freenode.net." - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "Перевірте отриманий образ" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "Настанови щодо CHECKSUM і перевірки" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "Як перевірити образ?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" -"Відразу після отримання образу перевірте його цілісність. Для цього " -"скористайтеся файлом CHECKSUM з каталогу, де розташовано отриманий вами файл" -" образу." - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "Для 64-бітових образів" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "Для 32-бітових образів" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "Для РС Atomic" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "Для образів aarch64" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "Для raw aarch64" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "Для ISO образу Atomic Host" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "Для образів Atomic Host" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "Для контейнера" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "Далі, імпортуйте GPG-ключі Fedora:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" -"Ви можете перевірити інформацію про GPG-ключ на цій сторінці." - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "Перевірте контрольну суму з файлу CHECKSUM:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "Файл CHECKSUM повинен мати коректний підпис одним з цих ключів:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "Fedora 29" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" -"Вторинні архітектури Fedora 26 (AArch64, PPC64, PPC64le, s390 і s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" -"Тепер, коли файл CHECKSUM перевірено, перевірте відповідність контрольної " -"суми образу:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" -"Якщо результат свідчить про правильність файла, ним можна користуватися!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "Як перевірити отриманий образ у іншій операційній системі?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "Ознайомтеся із цими настановами, щоб перевірити образ." - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" -"Отримайте Fedora Atomic — найкращу платформу для вашого стосу " -"контейнеризованих програм" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" -"Розгортайте і масштабуйте ваші контейнеризовані програми за допомогою " -"незмінної інфраструктури." - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "Отримати або запустити образ у відкритій «хмарі»" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"«Ми вибрали Fedora Atomic як основу для нашого Navops Launch — рішення для " -"забезпечення роботи кластерів Kubernetes, оскільки наші клієнти довіряють " -"цій системі і вже працюють із операційними системами Red Hat. Нам " -"подобається те, що сама Fedora Atomic під час роботи залишається незмінною, " -"що є ідеальним для контейнеризованих середовищ.»" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "Головний архітектор, Navops від Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" -"Atomic Host з проекту Atomic — невибаглива до ресурсів незмінна платформа, " -"єдиною метою якої є запуск контейнеризованих програм." - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" -"Версія Atomic Host на основі Fedora використовує ті самі сховища пакунків, " -"що і Fedora Server, і надає змогу встановити найсвіжіші версії Atomic." - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "Оновлення OStree" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" -"Поелементно оновлюйте вашу систему з найсвіжішої версії OStree з основної " -"гілки розробки. Зробіть ваші сервери ідентичними і отримайте простий спосіб " -"повернення до стабільного стану, якщо виникнуть проблеми із оновленнями." - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Інтерфейс командного рядка Atomic" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" -"Керуйте контейнерами Docker, систем, програмами Atomic та іншими " -"компонентами системи за допомогою зручних інструментів командного рядка." - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "Оптимізовано для Kubernetes і OpenShift" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"Створюєте кластер Kubernetes або Origin для запуску ваших контейнеризованих " -"програм? Запустіть кластер на Fedora Atomic і отримайте платформу на основі " -"компактнішої та простішої в обслуговуванні операційної системи." - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "Готові спробувати Fedora Atomic?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "Отримати Fedora Atomic Host" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "Дякуємо за те, що звантажили Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" -"Отримання даних має розпочатись протягом кількох секунд. Якщо цього не " -"відбулось, натисніть посилання нижче." - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "Перевірте отримані дані!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Відразу після отримання образу перевірте його цілісність. Для цього " -"скористайтеся файлом CHECKSUM з каталогу, де розташовано отриманий вами файл" -" образу, і виконайте ці настанови." - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "Перевірити!" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "Отримати Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "Отримати Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Період збирання нових версій Atomic Host складає близько 2 тижнів." - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"Найсвіжіша збірка, яку ми створюємо раз на два тижні, не пройшла наших " -"критеріїв тестування. Доступні образи мають вік понад %(atomic_age)s днів. " -"Відомості щодо оновлень та критичних вад у Atomic можна знайти у блозі " -"проекту Atomic." - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" -"Це найсвіжіші офіційні образи Fedora Atomic Host, які створено " -"%(atomic_age)s днів тому." - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Образи Atomic Host" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host — основні найсвіжіші результати роботи у межах моделі " -"проекту Atomic. Систему розроблено на основі Kubernetes та контейнерів. Тут " -"оприлюднено тестові образи. Зауважте, що ці образи пройшли декілька етапів " -"автоматизованого тестування." - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"Перш ніж використовувати нові версії із промисловою метою, виконайте" -" їхнє тестування. Якщо вами буде виявлено проблему, інструменти " -"Atomic Host спростять повернення до попереднього випуску. Якщо у вас " -"виникають якісь проблеми, допоможіть нам усунути їх надсиланням звітів щодо " -"вад або внесенням ваших виправлень." - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Оновлення образів Fedora Atomic Host відбувається приблизно кожні " -"два тижні, а не як у основній Fedora, раз на півроку. Оскільки " -"розробка рухається доволі швидко, підтримку передбачено лише для " -"найсвіжішого основного випуску Fedora." - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"Зауважте, що різні варіанти Fedora Atomic Host підлягають різним " -"рівням автоматичного тестування. Дізнатися більше про проект Atomic" -" можна на сайті projectatomic.io. Щоб переглянути дані " -"щодо поточного стану тестування, натисніть тут." - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "Образи Atomic Host для Amazon Public Cloud EC2" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"Нижче наведено посилання на списки доступних апаратних віртуальних машин " -"Atomic Host AMI за регіонами із кнопками для запуску їх у вашому обліковому " -"записі Amazon Web Services. Також наведено ідентифікатори AMI для " -"використання з AWS Console або засобами роботи за допомогою командного " -"рядка." - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "Формат GP2" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" -"AMI у форматі GP2 використовують швидші сховища даних SSD; цими AMI варто " -"користуватися для забезпечення швидкодії, але варто зауважжити, що вони є " -"вартіснішими за стандартні." - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "AMI АВМ GP2" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "Закрити" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "AMI АВМ GP2 Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "Регіон" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "Ід. AMI" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "Запуск" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "Стандартний формат" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" -"AMI у стандартному форматі краще пасує до випадків з нечастим доступом до " -"даних та випадків, коли вам хочеться знизити вартість зберігання даних." - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "Стандартні AMI для АВМ" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Стандартні AMI АВМ Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "Стандартний формат" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "Образи Atomic Host для Vagrant" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" -"Бокси Vagrant для Fedora Atomic Host передбачено для VirtualBox і Libvirt. " -"Підняти Fedora Atomic Host у боксі vagrant можна, отримавши образи від " -"Fedora або за допомогою інструментів отримання образів vagrant з Хмари Vagrant HashiCorp." - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "Перегляд варіантів отримання Vagrant" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Отримання образів Vagrant" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" -"Ці образи є образами боксів Vagrant для розгортання за допомогою Vagrant." - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "Образ для VirtualBox" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" -"Якщо ви користуєтеся Vagrant у Mac OS X або Windows, ймовірно, що вам " -"потрібен саме цей варіант." - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Звантаження" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64-бітовий образ Vagrant, Base, %s МБ, для VirtualBox" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "Образ для libvirt/KVM" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "Якщо ви користуєтеся Vagrant у Fedora, вам потрібен саме цей варіант." - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64-бітовий образ Vagrant, Base, %s МБ, для libvirt/KVM" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "Перегляд варіантів отримання за допомогою інструментів Vagrant" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "Отримання даних Vagrant за допомогою інструментів Vagrant" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" -"Ви можете скористатися такою командою для отримання образів боксів Vagrant з" -" Атласу HashiCorp." - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" -"Якщо ви раніше запускали Fedora %(rel)s Atomic Host у Vagrant на вашому " -"комп’ютері, ви можете отримати найсвіжішу версію за допомогою такої команди:" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"Щоб дізнатися більше про роботу Vagrant на платформі Fedora Workstation, " -"див. нашу сторінку у вікі." - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "Образи Atomic Host для «хмарних» середовищ" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "Образ qcow2" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" -"Це образ основної системи Fedora %(rel)s Cloud Atomic у форматі Qcow2 для " -"використання з OpenStack." - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64-бітовий образ для Qcow2 розміром %s МБ" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "Простий образ" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" -"Це основна система Fedora %(rel)s Cloud Atomic у форматі простого стисненого" -" образу. Якщо ви не певні щодо варіанта, який слід вибрати, виберіть саме " -"цей образ." - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64-бітовий стиснений xz образ raw у %s МБ" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "Інші варіанти отримання" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Образ ISO Atomic Host (%s МБ)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "Образ контейнера (%s МБ)" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "Спробуйте перед-релізну версію Fedora" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "Ми працюємо над наступними випусками" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "Допоможіть нам приготувати F%(rel)s" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "Отимати образи F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "Як протестувати перед-релізну версію" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "Ресурси" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Проект " -"Atomic: Перші кроки" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" -"Документація щодо перших кроків роботи з проектом Atomic та Atomic Host." - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Проект" -" Atomic: список листування" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" -"Долучайтеся до основного списку листування atomic@projectatomic.io." - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Проект Atomic: спілкування у IRC" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"Долучайтеся до спілкування щодо проекту Atomic на каналі " -"#atomic у irc.freenode.org." - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "Перевірити" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "Перевірте образ" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "Отримати Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" -"Цей найсвіжіші образи Fedora Atomic Host, створені " -"%(manual_pre_atomic_date)s." - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Це тестове програмне забезпечення, супровід якого не здійснюється командою Atomic. Будь ласка, надсилайте питання до" -" списку листування або задавайте питання на " -"каналі %(team_irc)s сервера freenode." - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"Про усі недоліки та вади слід повідомляти за допомогою Red Hat \n" -"Bugzilla. Проект Fedora не гарантує придатності цього продукту або \n" -"можливості користування цим продуктом." - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "GP2 AMI для HVM Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Стандартні AMI АВМ Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Бокси Vagrant для Fedora Atomic Host передбачено для VirtualBox і Libvirt. " -"Підняти Fedora Atomic Host у боксі vagrant можна, отримавши образи від " -"Fedora або за допомогою інструментів отримання образів vagrant з Атласу HashiCorp." - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"Це Fedora %(rel)s %(state)s Cloud Atomic Host у форматі образу Qcow2 для " -"використання у системі OpenStack." - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"Це основна система Fedora %(rel)s %(state)s Cloud Atomic у форматі простого " -"стисненого образу. Якщо ви не певні щодо варіанта, який слід вибрати, " -"виберіть саме цей образ." - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Проект Fedora — сторінку не знайдено" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404: сторінку не знайдено" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "Вибачаємось, але потрібного вам файла або сторінки не знайдено." - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "Ідеї щодо усування вад" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" -"Ще раз перевірте адресу, якщо вводили її вручну. Чи вірно ви скопіювали " -"посилання?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" -"Потрапили сюди через некоректне посилання? Зв’яжіться з адміністраторами сайта і повідомте їм про посилання, яке " -"привело вас на цю сторінку." - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"Сторінку або файл, ймовірно, було пересунуто. Перейдіть до основної сторінки сайта або пошукайте на нашій вікі." - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "Ключі для підписування пакунків" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" -"На цій сторінці наведено списки відкритих ключів GPG, що використовуються " -"для підписування пакунків у Fedora." - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "Дізнайтеся про те, як Fedora може захистити ваші дані." - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" -"У Fedora пакунки підписуються за допомогою GPG для убезпечення від " -"зловмисної зміни вмісту пакунків." - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "Щоб дізнатися більше, ознайомтеся із довідником >" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "Ключі, що використовуються" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "Основний" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "Вторинний" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "Шукаєте застарілі ключі?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "Застарілі ключі підписування пакунків" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" -"На цій сторінці наведено списки відкритих ключів GPG, які вже не " -"використовуються для підписування пакунків у Fedora." - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "Застарілі та невикористані ключі" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Ключ GPG Fedora" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Пакунки на носіях для встановлення підписані цим ключем. Відповідні dnf-" -"сховища: fedora, fedora-updates для Fedora" -" 7-9, а також core і core-updates для " -"Fedora Core (версії 6 і нижче). У повідомленні http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html можна дізнатись, чому ці ключі " -"оголошені застарілими." - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Тестові версії Fedora >= 7" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Тестові версії Fedora" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"Якщо ви приймаєте участь у тестуванні пакунків, цей ключ використовується " -"для перевірки тестових пакунків. Цим ключем підписуються пакунки зі сховища " -"fedora-testing. У повідомленні http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html можна дізнатись причину " -"оголошення цього ключа застарілим." - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Тестові версії Fedora 8-9" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Тестові версії Fedora 10" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"Якщо ви користуєтесь Fedora Extras з Fedora Core 6, цей пакунок зберігається" -" у сховищі extras. Цей ключ більше не використовується " -"після закінчення життєвого циклу Fedora Core 6 і Extras (7 грудня 2007 р.). " -"Цей ключ не входить до пакунка fedora-release у Fedora 7 та" -" подальших випусках." - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Застарілий" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"Цей ключ використовувався для пакунків випущених в межах проекту Fedora " -"Legacy для оновлення випусків, для яких скінчився життєвий цикл. Проект " -"Fedora Legacy більше не існує, тож цим ключем пакунки більше не підписуються" -" і він не входить до пакунка fedora-release у Fedora 7 та " -"подальших випусках." - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "Питання і відповіді щодо підписування пакунків" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" -"Дізнайтеся про те, як у Fedora використовується GPG для підписування " -"пакунків і забезпечення вашої безпеки." - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Як проект Fedora використовує GPG ключі для підпису пакунків" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"Кожен стабільний пакунок RPM, що розповсюджується у рамках Проекту Fedora " -"має GPG-підпис. Типово, dnf і графічні інструменти оновлення перевіряють ці " -"підписи і відмовляються встановлювати пакунки, що не підписані або мають " -"неправильний підпис. Завжди треба перевіряти підпис пакунка перед " -"встановленням. Це гарантує, що встановлюваний пакунок випущено Проектом " -"Fedora, а не змінено (випадково чи навмисно) якимось сайтом, з якого він " -"отриманий." - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" -"Пакунки звантажені з системи збирання Koji не мають підписів, тож їх " -"потрібно використовувати з обачністю. Аналогічно, не завжди підписані " -"пакунки зі сховища Rawhide." - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "Імпорт ключів" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"Ключі, що включені до пакунку fedora-release можна знайти у" -" каталозі /etc/pki/rpm-gpg. Зверніть увагу, що не всі ключі" -" в цьому каталозі використовуються Проектом Fedora — деякі застосовуються " -"для підпису пакунків Red Hat Enterprise Linux, або вже не використовуються " -"взагалі. Якщо ви користуєтесь пакунками Red Hat Enterprise Linux дивіться https://www.redhat.com/security/team/key. Ключі, що " -"використовуються в Fedora дозволені у налаштуваннях сховищ dnf, тож не " -"потрібно імпортувати їх до бази даних rpm вручну." - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"Окрім пакунка fedora-release та цієї сторінки, ключі можна отримати з " -"публічного сервера, зокрема keys.gnupg.net." - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"Для певних сховищ, наприклад сховищ зі стабільними та тестовими пакунками, " -"dnf здатний знайти відповідний ключ і запитати у " -"користувача підтвердження на його імпорт, якщо він досі відсутній у базі " -"даних rpm." - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "Ключі можна імпортувати у базу даних RPM вручну:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "Докладнішу інформацію наведено у посібнику з rpm." - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" -"Задля впевненості у відповідності встановлених у вас ключів тим, що наведені" -" тут, можна перевірити відбитки ключа програмою GnuPG. Наприклад:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" -"Отримайте Fedora Server — найсвіжіші технології для ваших програм і служб" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" -"Запускайте ваші програми на серверній операційній системі Linux із " -"найновішими технологіями з відкритим кодом." - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" -"Тепер із даними у декількох версіях із незалежними циклами — отже, ваш " -"сервер може працювати із обома циклами, швидким і повільним." - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Сервер Fedora" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" -"Fedora Server — серверна операційна система зі скороченим життєвим циклом " -"підтримувана спільнотою. Ця операційна система надає змогу адміністраторам з" -" досвідом роботи із будь-якою операційною системою скористатися найсвіжішими" -" здобутками технологій, які тільки доступні у середовищі із відкритим кодом." - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "Впроваджуємо модульність" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" -"Модульність дає нове модульне сховище, де зберігаються додаткові версії " -"програмного забезпечення із незалежними життєвими циклами." - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" -"Виберіть потрібну вам версію програми або стосу пакунків мови і зберігайте " -"її навіть після оновлення операційної системи до нової версії." - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "Дізнатися більше про модульність" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "Просте адміністрування" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Керувати вашою системою дуже просто за допомогою потужного і сучасного " -"інтерфейсу Cockpit. Ви можете переглядати і спостерігати за швидкодією і " -"станом системи, розгортати служби на основі контейнерів і керувати ними." - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "Служби баз даних" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" -"Fedora Server може працювати як масштабований сервер бази даних промислового" -" класу на основі проекту з відкритим кодом PostgreSQL." - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "Повноцінне промислове рішення для домену" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" -"Розширте можливості вашої мережі Linux за допомогою удосконаленого керування" -" профілями, DNS, служб сертифікації, інтеграції доменів Windows™ у всьому " -"середовищі, скориставшись FreeIPA, контролером домену із відкритим кодом." - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" -"«Для DevConf US мені потрібна була система для керування конференцією. Я " -"знайшов regcfp, написану Патріком Уйтервейком, яка, як мені здалося, " -"відповідала моїм потребам. Втім, вона не працювала із nodejs 8 у F27. " -"Запустив F28 Server, вибрав потік «nodejs:6», і усе запрацювало як слід!»" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "Співголова конференції DevConf US" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "Готові спробувати Fedora Server?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "Отримати Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "Отримати Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64-бітовий образ у %s ГБ для встановлення" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" -"За допомогою образу для встановлення Fedora Server ви можете створити носій " -"для вашого комп’ютера, який завантажуватиме безпосередньо встановлювач для " -"встановлення Fedora Server на жорсткий диск вашого комп’ютера." - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" -"Щоб скористатися цим образом, вам знадобиться пристрій, який може створювати" -" або записувати диски DVD, або флеш-носій USB, розмір якого має перевищувати" -" розмір образу." - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" -"Якщо вам хочеться спробувати нові модульні можливості Fedora Server, будь " -"ласка, відвідайте роздял документації з модульності Користування модулями. Якщо вам потрібно більше " -"інформації щодо модульності загалом, будь ласка, ознайомтеся із сайтом на pagure." - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Образ для встановлення мережею:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64-бітовий образ у %s МБ" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "Образ aarch64 у %s МБ" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "Образ ISO DVD:" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "Образ диска raw:" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s релізи" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "Завантаження F%(rel)s альфа образів" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Бета" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "Завантажити F%(rel)s Бета Образи" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "Отримати іншу Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "Технологія ARM®" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" -"Як перетворити образ інтерактивної системи на носій із системою, придатною " -"до завантаження?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"Після отримання образу вам слід створити придатний до завантаження носій на " -"його основі. Ви можете або записати образ на порожній диск " -"DVD, або записати образ на флеш-диск USB." - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "Як завантажити систему з носія?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"Зверніться до документації щодо вашого комп’ютера, щоб дізнатися про те, як " -"можна завантажити систему з носія, відмінного від вбудованого жорсткого " -"диска. Конкретні кроки цієї процедури залежать від виробника і моделі вашого" -" комп’ютера. Можливо, вам будуть корисні загальні підказки." - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "Отримати Fedora %s Server" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "Отримати Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64-бітовий образ у %s ГБ для встановлення" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Це тестове програмне забезпечення, супровід якого не здійснюється командою «серверних компонентів» Будь ласка, надсилайте \n" -"питання до списку листування або задавайте питання на каналі %(team_irc)s сервера freenode." - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"Ознайомтеся з нотатками щодо випуску, щоб " -"дізнатися більше про внесені зміни та нові можливості, та зі сторінкою типових вад, щоб дізнатися про " -"недоліки та способи їхнього усування." - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Коли буде випущено Fedora %s?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "Ознайомитися з усіма ключовими етапами у плані щодо випуску…" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"Відразу після отримання образу перевірте його цілісність. Для цього " -"скористайтеся файлом CHECKSUM, посилання на який розміщено нижче, збереженим" -" до каталогу, куди вами збережено файл образу, і виконайте ці настанови." - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" -"Отримайте Fedora Workstation — найкращую робочу операційну систему для " -"розробників" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "Це робоча станція на основі Linux, на яку ви так довго чекали." - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation — надійна, дружня до користувача і потужна операційна " -"система для вашого ноутбука чи стаціонарного комп’ютера. У ній можуть " -"працювати усі розробники, від початківців та студентів до професіоналів у " -"корпоративних середовищах." - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" -"«Палітра інструментів, які є частиною
Fedora надає мені змогу " -"виконувати свою роботу.
Це просто працює як слід.»" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "Інженер із швидкодії JVM" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "Простий інтерфейс користувача" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"Зосередьтеся на вашому коді у стільничному середовищі GNOME 3. GNOME " -"створено на основі побажань розробників, середовище мінімізує сторонні " -"фактори, отже ви можете сконцентруватися на важливих моментах." - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "Повний набір інструментів із відкритим кодом" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"Забудьте про постійний пошук і збирання потрібних вам інструментів. З повним" -" набором відкритих мов програмування, інструментів та засобів Fedora будь-що" -" з цього набору доступне за одне клацання кнопкою миші або просту команду. " -"Передбачено навіть можливості із зберігання проектів та власних сховищ " -"пакунків, зокрема COPR, для того, щоб ваш код і пакунки швидко діставалися " -"спільноти користувачів." - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes та інші інструменти віртуалізації" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" -"За допомогою GNOME Boxes ви зможете швидко створювати і запускати віртуальні" -" машини для тестування вашого коду на багатьох програмних платформах. Ви " -"також можете скористатися потужними інструментами віртуалізації зі " -"скриптовим керуванням для того, щоб отримати додаткові важелі керування " -"середовищем." - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "Вбудована підтримка Docker" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" -"Створюйте контейнери з вашими власними програмами і розгортайте готові до " -"використання контейнери на основі Fedora за допомогою найсучасніших " -"технологій, зокрема Docker." - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "Готові спробувати Fedora Workstation?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "Отримати Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "Отримати Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s МБ Fedora Media Writer для Mac OS X" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "64-бітовий образ ISO %s ГБ для Linux." - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" -"Отримувати образ потрібно лише для встановлення системи наново. Щоб оновити " -"систему, виконайте ці настанови." - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s МБ Fedora Media Writer для Windows" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "Отримайте Fedora Media Writer для вашої операційної системи." - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "Потрібні настанови? Маєте якусь іншу операційну систему?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "Запуск Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "Щоб запустити Fedora Workstation, вам знадобляться такі компоненти:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (посилання наведено вище)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "Флешка USB місткістю у принайнмі %s ГБ" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" -"Fedora Workstation можна запустити за допомогою Fedora Media Writer. " -"Отримайте цю програму для вашої підтримуваної платформи, " -"виконайте настанови і запишіть портативну версію (див. «Що означає слово " -"«Live»?» праворуч) Fedora Workstation на флешку USB. Далі, ви зможете " -"запускати портативну версію Fedora Workstation з вашої флешки." - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"Якщо захочете, можете встановити Fedora Workstation на ноутбук або робочу " -"станцію з процесором із частотою принаймні 1 ГГц, принаймні 1 ГБ оперативної" -" пам’яті та принаймні 10 ГБ вільного місця на диску. Для цього запустіть " -"портативну версію Fedora Workstation з флешки на комп’ютері, де ви хочете " -"встановити операційну систему, запустіть програму Fedora Media Writer і " -"виконайте показані нею настанови щодо встановлення." - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "Підтримувані платформи" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "У Fedora Media Writer передбачено підтримку таких платформ:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Наша система автоматичного визначення отримала дані щодо того, що ви " -"працюєте у Mac OS X, і запропонувала вам отримати " -"відповідну версію програми. Якщо операційну систему було визначено помилково" -" або ви хотіли б отримати іншу версію, будь ласка, натисніть розташовану " -"нижче кнопку «Переглянути пакунки для усіх платформ»." - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"Наша система автоматичного визначення отримала дані щодо того, що ви " -"працюєте у Linux, і запропонувала вам отримати відповідну " -"версію програми. Якщо операційну систему було визначено помилково або ви " -"хотіли б отримати іншу версію, будь ласка, натисніть розташовану нижче " -"кнопку «Переглянути пакунки для усіх платформ»." - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"Наша система автоматичного визначення отримала дані щодо того, що ви " -"працюєте у Windows, і запропонувала вам отримати відповідну" -" версію програми. Якщо операційну систему було визначено помилково або ви " -"хотіли б отримати іншу версію, будь ласка, натисніть розташовану нижче " -"кнопку «Переглянути пакунки для усіх платформ»." - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "Переглянути пакунки для усіх платформ" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Можна встановити за допомогою DNF у Fedora" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "Докладніше" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "Як скористатися цим ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "Перевірте образ" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64-бітовий образ Live у %s ГБ" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32-бітовий образ Live у %s ГБ" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "Образи для встановлення мережею:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32-бітовий образ у %s МБ" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "Спробуйте робочу станцію Atomic" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "Atomic надає вам незмінний образ ОС та оновлення за допомогою OSTree." - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "64-бітовий образ у %s ГБ Atomic" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "Дізнатися більше" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" -"Оголошення щодо випуску" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" -"Ознайомтеся із повним текстом оголошення щодо випуску у Fedora Magazine." - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "Нотатки щодо випуску" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" -"Ознайомтеся зі списком змін з часу попереднього випуску Fedora, а також із " -"мінімальними вимогами та рекомендаціями щодо запуску Fedora." - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" -"Настанови щодо " -"встановлення" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" -"Ми рекомендуємо вам ознайомитися з ними, перш ніж встановлювати вашу " -"систему, оскільки там можна знайти відповідь на більшість поширених питань." - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "Типові проблеми" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" -"Чудовий ресурс настанов, які допоможуть вам вирішити проблеми зі " -"встановленням або роботою Fedora." - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "Що означає слово «Live»?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer створить повноцінну працездатну версію Fedora " -"Workstation, яку ви зможете запускати безпосередньо з флешки USB. Ви зможете" -" використовувати образ портативної системи для тестування та перевірки " -"Fedora без потреби у перезаписування диска на вашому комп’ютері." - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" -"Якщо захочете, ви зможете встановити Fedora на ваш комп’ютер за допомогою " -"цієї портативної версії Fedora Workstation." - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Збірки Fedora" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "Отримати Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "Отримати Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" -"Оновіть систему за допомогою DNF, якщо вже користуєтеся " -"Fedora." - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"Це тестове програмне забезпечення, супровід якого не здійснюється командою «компонентів робочої станції» Будь ласка," -" надсилайте питання до списку листування або " -"задавайте питання на каналі %(team_irc)s сервера freenode." - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "Користування тестовими версіями Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" -"Щоб скористатися тестовою версією Fedora Workstation, вам знадобляться такі " -"компоненти:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer (можна отримати за посиланням, наведеним нижче)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" -"Образ ISO портативної версії тестової Fedora, якою ви " -"хочете скористатися" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" -"ПОПЕРЕДЖЕННЯ: у результаті виконання описаних дій, усі поточні дані на " -"флешці буде втрачено. Переконайтеся, що у вас є резервні копії важливих " -"даних з флешки, перш ніж виконувати будь-які дії з нею." - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "Отримайте програму Fedora Media Writer за вказаним нижче посиланням." - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "Отримайте бажаний образ ISO." - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" -"Запустіть програму Fedora Media Writer. Ймовірно, вам доведеться вказати " -"пароль, щоб отримати потрібні для роботи програми права доступу." - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "Виберіть пункт «Нетипова ОС…» зі списку." - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" -"На сторінці нетипової операційної системи натисніть кнопку «Вибрати ISO " -"портативної системи»." - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "У вікні вибору вкажіть отриманий вами файл образу ISO." - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"З’єднайте флешку USB з комп’ютером. Якщо ви вже використовували флешку USB " -"для створення носія портативної системи, можливо, вам доведеться відновити " -"початкові параметри її роботи. Якщо буде виявлено такий випадок, програма " -"сама запропонує вам це зробити." - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" -"Натисніть кнопку «Створити Live USB», щоб записати образ на флешку. " -"Зачекайте на завершення запису, потім від’єднайте флешку від комп’ютера і " -"закрийте вікно програми." - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "Перевірити 64-бітову!" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "Перевірити 32-бітову!" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"Як тестувати тестові випуски" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" -"Вікі Fedora допоможе вам розібратися із тестуванням тестових версій Fedora." - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "Архітектура" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Кореневе сховище" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "Запустити екземпляр AMI" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "Виберіть найближчий регіон" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64-бітова (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32-бітова (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "Запустіть!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "Експортні обмеження" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "Ознайомитися з усіма обмеженнями на експортування" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" -"Натискаючи відповідну кнопку і отримуючи Fedora, ви погоджуєтеся із " -"виконанням наступних умов." - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "Детальніше >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "Опис" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Про Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Спонсори" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "Правові положення" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "Отримання Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "Отримання Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "Отримання Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "Альтернативні джерела" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Підтримка" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Допомога" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Запитайте Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Типові вади" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Портал розробників Fedora" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Посібник зі встановлення" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Участь" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Приєднання" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Планета" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Інтереси" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Облікові рахунки" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Спільнота" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Спонсор Fedora — компанія Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "Докладніше про зв'язок проекту з компанією >" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. та інші." - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" -"Будь ласка, надсилайте коментарі та виправлення команді з підтримки сайтів." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "Змінити мову" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "Гаразд" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"Тут ще більше \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "Проста. Потужна. Готова до будь-якої «хмари»" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "Найновіші технології. Міцна основа. Разом, для ваших програм і служб." - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "Документація та інші ресурси" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" -"Перш ніж встановлювати Fedora, можливо, ви захочете перевірити, чи " -"задовольняє ваша система мінімальні вимоги щодо встановлення Fedora. " -"Зверніться до нотаток щодо випуску, де є " -"розділ, присвячений рекомендаціями та переліку мінімальних вимог." - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" -"Крім того, існує повноцінний підручник із " -"встановлення. Ми рекомендуємо вам ознайомитися з ним, перш ніж " -"встановлювати вашу систему, оскільки там можна знайти відповідь на більшість" -" поширених питань." - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "Інші способи отримання носіїв" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" -"Ви можете придбати носій з копією Fedora у інтернет-" -"розповсюджувачів, або скористатись послугами місцевих " -"постачальників у вашому регіоні." - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" -"Не маєте можливості придбати носії для встановлення? Замовте їх за допомогою" -" програми надсилання безкоштовних дисків з Fedora." - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "Дані щодо ключа GPG" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "Ід. ключа" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "Відбиток" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "Можна отримати з:" diff --git a/getfedora.org/po/ur.po b/getfedora.org/po/ur.po deleted file mode 100644 index f3f3e4d..0000000 --- a/getfedora.org/po/ur.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Urdu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/uz.po b/getfedora.org/po/uz.po deleted file mode 100644 index 77630cf..0000000 --- a/getfedora.org/po/uz.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \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 1.3\n" -"Language: uz\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/vi.po b/getfedora.org/po/vi.po deleted file mode 100644 index ad833d6..0000000 --- a/getfedora.org/po/vi.po +++ /dev/null @@ -1,2439 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2015-02-17 08:28-0500\n" -"Last-Translator: Copied by Zanata \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" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "Tải" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Dự án Fedora - Không tìm thấy trang " - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "Giới thiệu về Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "Bảo trợ" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "Hỗ trợ" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "Tìm trợ giúp" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "Những lỗi thường gặp " - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "Hướng dẫn cài " - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "Tham gia" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "Tham gia Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIGs" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Hệ thống tài khoản Fedora" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Cộng đồng Fedora" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora được tài trợ bởi Red Hat." - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "OK" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/wba.po b/getfedora.org/po/wba.po deleted file mode 100644 index 028ad70..0000000 --- a/getfedora.org/po/wba.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Warao\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: wba\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/wo.po b/getfedora.org/po/wo.po deleted file mode 100644 index 0d0e259..0000000 --- a/getfedora.org/po/wo.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Wolof (http://www.transifex.com/projects/p/fedora-web/language/wo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: wo\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/xh.po b/getfedora.org/po/xh.po deleted file mode 100644 index efda525..0000000 --- a/getfedora.org/po/xh.po +++ /dev/null @@ -1,1515 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2015 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: 2015-02-06 00:17+0100\n" -"PO-Revision-Date: 2015-02-05 23:17+0000\n" -"Last-Translator: Robert Mayr \n" -"Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora-web/language/xh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" -"Language: xh\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behaviour and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:8 -msgid "Fedora" -msgstr "" - -#: data/content/index.html:17 -msgid "Fedora is now more focused" -msgstr "" - -#: data/content/index.html:18 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora streamlined for your " -"needs, and get to work right away." -msgstr "" - -#: data/content/index.html:29 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:31 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools and helpers for " -"developers and makers of all kinds." -msgstr "" - -#: data/content/index.html:41 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:43 data/content/server/index.html:51 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:53 data/content/verify.html:63 -#: data/templates/productselector-cloud.html:13 -msgid "Cloud" -msgstr "" - -#: data/content/index.html:55 -msgid "" -"Fedora Cloud provides a minimal image of Fedora for use in public and " -"private cloud environments. It includes just the bare essentials, so you get" -" enough to run your cloud application -- and nothing more." -msgstr "" - -#: data/content/index.html:68 -msgid "Freedom. Friends. Features. First." -msgstr "" - -#: data/content/index.html:72 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:147 -msgid "Keep up to date with Fedora" -msgstr "" - -#: data/content/index.html:148 -#, python-format -msgid "" -"Stay connected with the Fedora Project and get all the latest news and " -"reports in Fedora Magazine." -msgstr "" - -#: data/content/index.html:151 -msgid "Fedora Documentation" -msgstr "" - -#: data/content/index.html:152 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on " -"the current release. To learn more about using Fedora and details such as " -"system requirements, see the official documentation." -msgstr "" - -#: data/content/index.html:157 -msgid "Looking for more Fedora?" -msgstr "" - -#: data/content/index.html:158 -#, python-format -msgid "" -"The Fedora community also releases ARM images, alternate live Spins, and " -"other variations of Fedora tailored to specific requirements. Browse them at" -" the Spins page." -msgstr "" - -#: data/content/index.html:161 -msgid "Getting Help" -msgstr "" - -#: data/content/index.html:162 -#, python-format -msgid "" -"Need some help with Fedora? Ask a question at Ask Fedora," -" email other users on the mailing lists, or chat realtime" -" in the IRC Channels." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:99 -msgid "" -"Fedora Infrastructure would like to thank the following open-source projects" -" for their software (alphabetically ordered):" -msgstr "" - -#: data/content/sponsors.html:101 -msgid "Askbot" -msgstr "" - -#: data/content/sponsors.html:102 -msgid "Ansible" -msgstr "" - -#: data/content/sponsors.html:103 -msgid "Git" -msgstr "" - -#: data/content/sponsors.html:104 -msgid "Nagios" -msgstr "" - -#: data/content/sponsors.html:105 -msgid "GNU Mailman" -msgstr "" - -#: data/content/sponsors.html:106 -msgid "Mediawiki" -msgstr "" - -#: data/content/sponsors.html:107 -msgid "Python" -msgstr "" - -#: data/content/sponsors.html:108 -msgid "Trac" -msgstr "" - -#: data/content/sponsors.html:109 -msgid "TurboGears" -msgstr "" - -#: data/content/sponsors.html:118 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:119 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -#: data/content/verify.html:65 -msgid "For 64bit images" -msgstr "" - -#: data/content/verify.html:44 data/content/verify.html:56 -#: data/content/verify.html:68 -msgid "For 32bit images" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 22" -msgstr "" - -#: data/content/verify.html:83 -msgid "Fedora 22 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:69 -msgid "Fedora 21" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 21 secondary arches (aarch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:92 -msgid "Fedora 20" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 20 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:88 data/content/keys/index.html:114 -msgid "Fedora 19" -msgstr "" - -#: data/content/verify.html:89 -msgid "Fedora 19 secondary arches (ARM, PPC64, s390)" -msgstr "" - -#: data/content/verify.html:91 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:93 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:94 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:95 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/cloud/index.html:8 -msgid "Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:18 -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/content/cloud/index.html:19 -msgid "" -"Build scale-out computing and utilize the next generation of container " -"deployment with Fedora Cloud" -msgstr "" - -#: data/content/cloud/index.html:24 data/content/cloud/index.html:120 -#: data/content/cloud/index.html:126 data/content/server/index.html:20 -#: data/content/server/index.html:126 data/content/server/index.html:132 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/cloud/index.html:39 -msgid "" -"“Fedora 21 gives me the balance I'm looking for — a leading edge operating " -"system with enterprise-level tools for fast provisioning and configuration.”" -msgstr "" - -#: data/content/cloud/index.html:40 -msgid "Principal Architect at Rackspace" -msgstr "" - -#: data/content/cloud/index.html:52 -msgid "Minimal, fast, flexible" -msgstr "" - -#: data/content/cloud/index.html:53 -msgid "" -"Everything you need, and nothing you don't. The Fedora Cloud Base image is " -"smaller, so you can deploy faster. Then use the universe of services and " -"tools in Fedora to customize, so your cloud is right for you." -msgstr "" - -#: data/content/cloud/index.html:70 -msgid "Public or private" -msgstr "" - -#: data/content/cloud/index.html:71 -msgid "" -"Deploy and run Fedora Cloud in public or private cloud infrastructure, using" -" the industry standard tools cloud-init and OpenStack Heat. Wherever you run" -" your cloud, Fedora is ready to go." -msgstr "" - -#: data/content/cloud/index.html:82 -msgid "Designed for containers" -msgstr "" - -#: data/content/cloud/index.html:83 -msgid "" -"Want easy, scalable app deployment? Fedora Atomic Host is optimized and " -"streamlined to run Docker containers out of the box. Whether you're rolling " -"out a handful of containers, or scaling up to meet incredible demand, you " -"can do it with Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/index.html:97 -msgid "Project Atomic inside" -msgstr "" - -#: data/content/cloud/index.html:98 -msgid "" -"The new Project Atomic update system works like git for your operating " -"system. Now you can update and roll back with confidence and minimal " -"downtime." -msgstr "" - -#: data/content/cloud/index.html:120 data/content/cloud/index.html:125 -msgid "Ready to give Fedora Cloud a try?" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:8 -#: data/content/cloud/download/index.html:10 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:49 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/cloud/download/download-cloud-splash.html:52 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/cloud/download/index.html:33 -#, python-format -msgid "Download Fedora %(rel)s Cloud" -msgstr "" - -#: data/content/cloud/download/index.html:34 -msgid "There are two main versions of Fedora Cloud available below:" -msgstr "" - -#: data/content/cloud/download/index.html:36 -msgid "A general purpose version suitable for creating VMs." -msgstr "" - -#: data/content/cloud/download/index.html:37 -msgid "A version for deploying containers powered by Fedora Atomic Host." -msgstr "" - -#: data/content/cloud/download/index.html:51 -#: data/content/cloud/download/index.html:64 -msgid "General Purpose" -msgstr "" - -#: data/content/cloud/download/index.html:52 -#: data/content/cloud/download/index.html:65 -msgid "" -"This base Fedora Cloud image is for creating general-purpose virtual " -"machines (VMs.)" -msgstr "" - -#: data/content/cloud/download/index.html:55 -#: data/content/cloud/download/index.html:81 -msgid "For Containers" -msgstr "" - -#: data/content/cloud/download/index.html:56 -#: data/content/cloud/download/index.html:82 -msgid "" -"This is the Fedora Atomic Host image, specifically tailored for use with " -"containers only. Use it to deploy containers." -msgstr "" - -#: data/content/cloud/download/index.html:68 -#: data/content/cloud/download/index.html:74 -#: data/content/cloud/download/index.html:85 -#: data/content/cloud/download/index.html:91 -#: data/content/server/download/index.html:32 -#: data/content/workstation/download/index.html:38 -#: data/templates/footer.html:36 -msgid "Download" -msgstr "" - -#: data/content/cloud/download/index.html:69 -#: data/content/cloud/download/index.html:86 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/cloud/download/index.html:71 -#: data/content/cloud/download/index.html:88 -msgid "Are you an OpenStack user?" -msgstr "" - -#: data/content/cloud/download/index.html:73 -#: data/content/cloud/download/index.html:90 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud in a Qcow2-formatted image for use with " -"OpenStack." -msgstr "" - -#: data/content/cloud/download/index.html:75 -#: data/content/cloud/download/index.html:92 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/cloud/download/index.html:99 -msgid "Amazon Public Cloud EC2 Images" -msgstr "" - -#: data/content/cloud/download/index.html:100 -msgid "" -"Fedora Cloud AMIs are available in both hardware virtual machine (HVM) and " -"paravirtual (PV) formats. HVM AMIs have access to enhanced networking, GPU " -"processing and performance-enhancing hardware extensions. Some instance " -"types (like Atomic images) are only available as HVM AMIs." -msgstr "" - -#: data/content/cloud/download/index.html:101 -#, python-format -msgid "" -"If you're unsure which image to choose, get the HVM format. It can provide " -"the same or better performance than PV images. Learn " -"more..." -msgstr "" - -#: data/content/cloud/download/index.html:102 -msgid "" -"Choose the region and click to launch in your Amazon Web Services account. " -"You can also copy the AMI ID and use that to launch from the AWS Console or " -"command-line tools." -msgstr "" - -#: data/content/cloud/download/index.html:109 -msgid "Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:114 -#: data/content/cloud/download/index.html:183 -#: data/content/cloud/download/index.html:255 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/cloud/download/index.html:115 -#, python-format -msgid "Fedora %(rel)s Base Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:120 -#: data/content/cloud/download/index.html:189 -#: data/content/cloud/download/index.html:261 data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/cloud/download/index.html:121 -#: data/content/cloud/download/index.html:190 -#: data/content/cloud/download/index.html:262 -msgid "Ami ID" -msgstr "" - -#: data/content/cloud/download/index.html:122 -#: data/content/cloud/download/index.html:191 -#: data/content/cloud/download/index.html:263 data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/cloud/download/index.html:127 -#: data/content/cloud/download/index.html:196 -#: data/content/cloud/download/index.html:268 -msgid "US East (N. Virginia)" -msgstr "" - -#: data/content/cloud/download/index.html:132 -#: data/content/cloud/download/index.html:201 -#: data/content/cloud/download/index.html:273 -msgid "US West (Oregon)" -msgstr "" - -#: data/content/cloud/download/index.html:137 -#: data/content/cloud/download/index.html:206 -#: data/content/cloud/download/index.html:278 -msgid "US West (N. California)" -msgstr "" - -#: data/content/cloud/download/index.html:142 -#: data/content/cloud/download/index.html:211 -#: data/content/cloud/download/index.html:283 -msgid "EU West (Ireland)" -msgstr "" - -#: data/content/cloud/download/index.html:147 -#: data/content/cloud/download/index.html:216 -#: data/content/cloud/download/index.html:288 -msgid "EU Central (Frankfurt)" -msgstr "" - -#: data/content/cloud/download/index.html:152 -#: data/content/cloud/download/index.html:221 -#: data/content/cloud/download/index.html:293 -msgid "Asia Pacific SE (Singapore)" -msgstr "" - -#: data/content/cloud/download/index.html:157 -#: data/content/cloud/download/index.html:226 -#: data/content/cloud/download/index.html:298 -msgid "Asia Pacific NE (Tokyo)" -msgstr "" - -#: data/content/cloud/download/index.html:162 -#: data/content/cloud/download/index.html:231 -#: data/content/cloud/download/index.html:303 -msgid "Asia Pacific SE (Sydney)" -msgstr "" - -#: data/content/cloud/download/index.html:167 -#: data/content/cloud/download/index.html:236 -#: data/content/cloud/download/index.html:308 -msgid "South America East (Sāo Paulo)" -msgstr "" - -#: data/content/cloud/download/index.html:178 -msgid "Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:184 -#, python-format -msgid "Fedora %(rel)s Base Cloud PV" -msgstr "" - -#: data/content/cloud/download/index.html:250 -msgid "Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:256 -#, python-format -msgid "Fedora %(rel)s Atomic Cloud HVM" -msgstr "" - -#: data/content/cloud/download/index.html:322 -#: data/content/server/download/index.html:47 -#: data/content/workstation/download/index.html:54 -msgid "Other Downloads" -msgstr "" - -#: data/content/cloud/download/index.html:324 -msgid "Base Images:" -msgstr "" - -#: data/content/cloud/download/index.html:326 -msgid "32-bit raw image" -msgstr "" - -#: data/content/cloud/download/index.html:327 -msgid "32-bit qcow2 image for OpenStack" -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/index.html:139 data/content/keys/index.html:153 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:69 -#: data/content/keys/index.html:92 data/content/keys/index.html:114 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:139 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:153 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:169 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant yum " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:282 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:302 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, yum and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the yum repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, yum is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Fedora Server" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora 21 Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:62 -msgid "Cockpit" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system easily with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles and Rolekit" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "OpenLMI tools" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Manage a wide variety of system parameters with OpenLMI. Simplify " -"administration using its unified command set and powerful Python scripting " -"interface." -msgstr "" - -#: data/content/server/index.html:96 -msgid "FreeIPA identity management" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management. Manage users," -" systems, and policy throughout your environment with FreeIPA, the engine " -"that drives Fedora Server's Domain Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:126 data/content/server/index.html:131 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:31 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:33 -#, python-format -msgid "64-Bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:42 -#: data/content/workstation/download/index.html:49 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:49 -msgid "Installation DVD:" -msgstr "" - -#: data/content/server/download/index.html:55 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Fedora Workstation" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:37 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:39 -#, python-format -msgid "64-Bit %sGB Live Image" -msgstr "" - -#: data/content/workstation/download/index.html:47 -msgid "What is a Live image?" -msgstr "" - -#: data/content/workstation/download/index.html:48 -msgid "" -"The Fedora Workstation Live image allows you to make media for your computer" -" that provides a complete, running Fedora Workstation you can run right " -"away. You can use the Live image to test and play with Fedora without making" -" changes to your hard disk. When you are ready, you can install Fedora to " -"your hard disk from the Live image." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64 bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32 bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:39 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Cloud" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Fedora Spins" -msgstr "" - -#: data/templates/footer.html:43 -msgid "Torrent Downloads" -msgstr "" - -#: data/templates/footer.html:50 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:54 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:55 -msgid "Forums" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:63 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:67 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:68 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:84 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:85 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:86 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:92 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:96 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "There's more to" -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/yo.po b/getfedora.org/po/yo.po deleted file mode 100644 index a8d7db5..0000000 --- a/getfedora.org/po/yo.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Yoruba\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: yo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/zh_CN.po b/getfedora.org/po/zh_CN.po deleted file mode 100644 index b2a68c6..0000000 --- a/getfedora.org/po/zh_CN.po +++ /dev/null @@ -1,2572 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Alick Zhao , 2014 -# Tiansworld , 2014 -# Tommy He , 2014 -# Tong Hui , 2014 -# Alick Zhao , 2015. #zanata -# Martin Liu , 2015. #zanata -# Pany , 2015. #zanata -# Tian Shixiong , 2015. #zanata -# Qi Fan , 2016. #zanata -# Tommy He , 2016. #zanata -# Tong Hui , 2016. #zanata -# Jerry Lee , 2017. #zanata -# Pany , 2017. #zanata -# Tong Hui , 2017. #zanata -# lexuge , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-12-08 12:51-0500\n" -"Last-Translator: Jerry Lee \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" -"Language: zh-CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora 行为准则" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora 的行为准则" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "力求成为社区的一分子,遵守行为准则。" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "行为准则" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora 社区汇聚了来自全世界的专业人士和志愿者,他们的工作涵盖了这一 Linux " -"发行版的方方面面,从代码编写到营销推广。多样性令我们具有极大的优势,但同时也会导致沟通问题和人际矛盾。因此,我们制定了数条基本规则,并要求大家在使用项目资源时遵从这些规则。" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "这些准则并不详细说明各种禁忌,而是要求大家对其精神心领神会——遵守这一指南会令彼此的工作更轻松,更出色。" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "三思而行。您的工作成果会被他人使用,反过来说,您也需要依靠他人的工作。您的任何决定都会影响到所有用户和工作伙伴,在决策时应该考虑到其后果。" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"尊重他人。不是所有人的看法都总是相同,但分歧不应该是糟糕行为和缺乏礼貌的借口。我们都可能会不时的感到沮丧,但我们不能让沮丧变成人身攻击。谨记最重要是:在人们感到不适和充满威胁的社区里是不会有高产出的。Fedora社区的成员应在同其他贡献者,Fedora社区外成员以及Fedora用户打交道的时候尊重他人。" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"当我们意见不能统一,就要努力理解其缘由。不管是因为社交原因还是技术原因,人们总会发生意见分歧,Fedora " -"也不例外。重要的是,我们应该建设性地解决分歧和异见。" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"要牢记每个人都各不相同。Fedora " -"的强大来自于其社区的多样性,社区成员有着广泛的背景。对同一件事,不同的人有不同的观点。如果您无法理解某人为何坚持某种观点,那也并不意味着他就是错的。别忘了,是人都会犯错,互相指责就什么也干不了,不如提出有助于解决问题的建议,帮助对方认识和吸取教训。" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "获取 Fedora:下载我们为开发者桌面环境、容器运行等需求打造,基于 Linux 的操作系统" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "选择自由,选择 Fedora。" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "更少的配置,更多的创新。

只需选择一个满足您需求的 Fedora 产品,便可立即开始使用。" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "Fedora %(rel)s %(state)s 现已发布! 在下载部分获取并测试。" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s 现已发布!现在获取。" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "Workstation" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "现在下载" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "Fedora Workstation 为笔记本和台式机提供优雅易用的操作系统,包含各类开发者和创客所需的整套工具。" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "马上下载" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "Server" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "Fedora Server 是一款强大而灵活的操作系统,包括了最好最新的数据中心技术。它可以让您操控全部基础架构和服务。" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "Fedora Atomic 将是您运行 Linux-Docker-Kubernetes(LDK) 应用的最佳平台。" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "Fedora 始终允许任何人自由使用,修改和发布。它由来自世界各地的人们在 Fedora 项目这一社区中协作打造。" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "想要更多 Fedora 选项?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora 社区同时也发布 ARM 镜像、备选的 " -"Live Spin 和其他各类适合特定需求的 定制化 Fedora 。请前往 Fedora SpinsFedora Labs 网站了解详情。" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "保持联系并获得通知。" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"想要加入进来? 想要知道 社区发生的事情?请前往Fedora Magazine阅读最新咨询及有趣的故事。" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "阅读文档。" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"查阅发行日志获得关于当前版本的详细信息。要了解更多关于使用 Fedora 及诸如系统需求的信息,请查阅 官方文档。" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "获得帮助。" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "需要 Fedora 相关帮助?通过 Ask Fedora,您可以查看已有提问,也可以自己发问。" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora 赞助者" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Fedora 项目因得到以下组织赞助而感到自豪……" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "首要赞助商" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"红帽公司 是 Fedora 项目的首要赞助商。红帽为 Fedora " -"项目提供了多种多样的资源,包括全职员工支持、基础设施硬件和带宽、社区活动经费、以及法律顾问等。" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "Fedora 项目同时对下列赞助商的大力支持表示感谢:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "有兴趣来赞助 Fedora 吗?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"联系 admin@fedoraproject.org 或者访问 " -"irc.freenode.net 上的 #fedora-admin 聊天室。" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "校验您所下载的镜像" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM 以及校验步骤" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "如何校验镜像?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "完成下载后,可验证文件的安全性和完整性。要验证您下载的镜像,请将对应的 CHECKSUM 文件下载到您的镜像文件所在的目录。" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "64 位镜像" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "32 位镜像" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "用于 Atomic Host ISO" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "用于 Atomic Host 镜像" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "下一步,导入 Fedora 的 GPG 公钥:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "您可在这里验证 GPG 公钥的详情。" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "现在验证 CHECKSUM 文件的有效性:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM 文件应有来自以下公钥之一的签名:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "Fedora 26 次级架构 (AArch64、PPC64、PPC64le、s390 和 s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "当 CHECKSUM 文件校验文成后,检查镜像文件的校验和值是否与其匹配:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "如果输出结果显示文件有效,则镜像文件可以使用!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "如何在其他操作系统上校验下载镜像?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "获取 Fedora Atomic:容器化应用栈的最佳平台" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "使用具备不可变特性基础架构部署并扩展您的容器化应用程序" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "在公有云上下载或启动" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"“我们选择 Fedora Atomic 作为我们 Navops Launch - Kubernetes " -"集群管控解决方案的基础是因为我们的客户信任且已经在运行红帽操作系统。我们钟爱 Fedora Atomic 的不可变特性因为它非常适合容器化环境。”" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "首席架构师, Navops 来自 Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "Atomic Host 源自 Project Atomic,它是一个轻量级的不可变平台,专注为运行容器化应用程设计。" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "Fedora 版本的 Atomic Host 使用与 Fedora Server 相同软件包仓库,并且提供最新版本的 Atomic。" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree 更新" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "使用上游最新的 OSTree 原子化的更新您的系统。创建完全一致的服务器,并且可以在有升级故障时方便的回滚。" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "使用单一的命令行工具便捷地管理 Docker 容器、系统容器、Atomic 应用及更多。" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "为 Kubernetes 和 OpenShift 优化" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"正在搭建 Kubernetes 或 Origin 集群来运行您的容器化应用程序?不妨尝试 Fedora Atomic " -"吧,它即是您所需的轻量、精简操作系统。" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "准备好体验 Fedora Atomic 了吗?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "感谢下载 Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "下载即将在几秒钟内开始。如果没有开始,请点击下方链接:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "校验您所下载的文件!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"完成下载后,可验证文件的安全性和完整性。要验证您下载的镜像,请将对应的 CHECKSUM 文件下载到您的镜像文件所在的目录,然后按照这些说明进行。" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "下载 Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "下载 Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host 每两周左右构建一次。" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"最近两周的版本并未通过我们的测试要求。当下可用的镜像是 %(atomic_age)s 天之前的。请关注 Project Atomic 博客了解 " -"Atomic 的问题及信息。" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "这些最新的 Fedora Atomic Host 镜像,发布于 %(atomic_age)s 。" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host 镜像" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host 是一个基于 Project Atomic 模式的前沿操作系统。它围绕 Kubernetes " -"和容器设计。发布在这里的镜像展示了此项工作。请注意这些镜像通过了各种级别的自动化测试。" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" -"请在生产环境中使用前充分测试新版本。 如果您发现了问题, Atomic Host 工具将很容易回滚到较早的发布 —— " -"若是真的发生了此类情况,请通过提交错误报告甚至修复补丁的方式帮助我们。" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" -"Fedora Atomic Host 镜像大约每两周更新一次, 而不是通常 Fedora " -"的六个月周期。因为开发进度很快,仅支持最新的重要 Fedora 发布版本。" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" -"注意不同介质的 Fedora Atomic Host 适用于不同级别的自动化测试。 您可以通过 projectatomic.io 了解更多关于 Atomic 项目。 点击这里查看当前测试状态。" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "适用于 Amazon Public Cloud EC2 的 Atomic Host 镜像" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" -"以下链接提供按区域划分的可用 Atomic Host Hardware Virtual Machine (HVM) AMIs 方便一键在您的 " -"Amazon Web Services 账户中启动。同时也提供适用于 AWS Console 或命令行工具的 AMI IDs 。" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 格式" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "GP2 格式 AMIs 使用较快的 SSD 存储;可以通过这些 AMIs 获得较快的速度,但是请注意您的存储开销将比标准的要多。" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMIs" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "关闭" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "区域" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "启动" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "标准格式)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "标准格式 AMI 更适合您并不频繁访问的数据且想要保持较低的存储开销。" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "基础 HVM AMIs" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s 标准 Atomic Host HVM AMIs" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "标准格式" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "针对 Vagrant 的 Atomic Host 镜像" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "查看 Vagrant 下载" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant 镜像下载" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "这些为适用于 Vagrant 开发的 Vagrant Boxes 镜像。" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox 镜像" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "如果您在使用 Mac OS X 或 Windows 上的 Vagrant,那么这可能是您想要使用的系统镜像。" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "下载" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64位 %sMB VirtualBox Base Vagrant 镜像" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM 镜像" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "如果您在使用 Fedora 上的 Vagrant,那么这可能是您想要使用的系统镜像。" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64 位 %sMB libvirt/KVM Base Vagrant 镜像" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "使用 Vagrant 工具查看下载" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "使用 Vagrant 工具下载" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "您可以使用如下命令从 HashiCorp's Atlas 获取 Vagrant Box 镜像。" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "如果您之前以 Vagrant 在您的设备上运行Fedora %(rel)s Atomic Host,那么您可以通过一下方式获取最新版本" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" -"了解更多在 Fedora Workstation 上运行 Vagrant 的信息,请参考 我们的 Wiki 页面。" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "适用于云计算环境的 Atomic Host 镜像" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 格式镜像" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "这是用于 OpenStack 的 Qcow2 格式的 Fedora %(rel)s Cloud Atomic Host。" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64 位 %sMB Qcow2 镜像" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "原始镜像" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "这是 Fedora %(rel)s Cloud Atomic Host 的 Raw 压缩格式镜像。如果你不清楚该用哪个镜像,可以试试这个。" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64 位 %sMB xz 压缩 Raw 镜像" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "其他下载" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "Atomic Host ISO 镜像 (%sMB)" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "F%(rel)s %(state)s" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "尝试一下预先发布版" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "我们正在开发下一个发布版" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "帮助我们让 F%(rel)s 做好准备!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "下载 F%(rel)s %(state)s 镜像" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "如何测试预先发布版" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "资源" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic: 入门指南" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "关于如何开始使用 Project Atomic / Atomic Host 的文档。" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic: 邮件列表" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "加入上游邮件列表位于 atomic@projectatomic.io。" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic: IRC Chat" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"加入 Project Atomic 频道 #atomic 位于 " -"irc.freenode.org。" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "验证" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "校验您的镜像" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "下载 Fedora %(rel)s %(state)s Atomic Host" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "这些是最新的 Fedora Atomic Host 镜像,发布于%(manual_pre_atomic_date)s。" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"这是预发布软件,由Atomic 工作组支持。请将问题发送至该团队的邮件列表或 freenode 上的 %(team_irc)s。" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"所有问题和 bug 都应通过 Red Hat Bugzilla 进行报告。Fedora " -"项目对其适用性和可使用性不做任何保证。" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s %(state)s 标准 Atomic Host HVM AMIs" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" -"Vagrant Boxes for Fedora Atomic Host 适用于 VirtualBox 和 Libvirt 环境。您可以通过从 " -"Fedora 官方或者使用 Vagrant 工具从 HashiCorp's Atlas 下载并在 Vagrant " -"Box 中运行 Fedora Atomic Host。" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" -"这是用于 OpenStack 的 Qcow2 格式的 Fedora %(rel)s %(state)s Cloud Atomic Host。" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"这是 Fedora %(rel)s %(state)s Cloud Atomic Host 的 Raw " -"压缩格式镜像。如果你不清楚该用哪个镜像,可以试试这个。" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora Project - 页面未找到" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404:页面未找到" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "对不起,未找到您所请求的页面或文件。" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "故障排除建议" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "如果是手工输入,请仔细检查您输入的 URL。您复制正确了吗?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "链接有问题吗?可联系网站管理员并告知是哪一个链接将您带向本页面。" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "页面或文件可能已经移动。请浏览主页或搜索维基页面。" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "软件包签名密钥" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "本页列出了签署 Fedora 软件包所使用的 GPG 公钥。" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "了解 Fedora 如何保护您。" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "Fedora 使用 GPS 包签名来保证软件包的完整性不受侵害。" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "阅读常见问题了解更多内容 »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "当前使用的公钥" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "主要" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "次要" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "想查找 已失效公钥吗?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "已失效软件包签名公钥" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "该页面列出了不再用于签署 Fedora 软件包的 GPG 公钥。" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "失效及未使用公钥" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG 公钥" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"安装介质中的软件包使用这个密钥。相关 dnf 仓库为用于 Fedora 7-9 的fedorafedora-updates,用于 Fedroa Core(6及更早版本) 的 " -"corecore-updates。查看 http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html 来了解此密钥废弃的原因。" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 测试" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora 测试" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"如果您参与了软件包测试,这是您需要使用验证测试软件包的公钥。这个公钥用来签名位于 fedora-testing " -"仓库的软件包。查看 http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html 了解为何这个公钥被废弃了。" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 测试" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 测试" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"如果您在 Fedora Core 6 上使用了 Fedora Extras,请使用这个来自 extras " -"的软件包。该公钥在 Fedora Core 6 及 Extras 停止维护(2007年12月7日)后就不再使用。该公钥未包含在 Fedora 7 " -"及以后发布的 fedora-release 软件包中。" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "遗留" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"该公钥被 Fedora 遗留项目用来为官方停止维护后的版本发布更新签名。Fedora " -"遗留项目已不存在,所以该公钥也不再用来签署任何软件包。该公钥未包含在 Fedora 7 及以后发布的 fedora-" -"release 软件包中。" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "软件包签名常见问题" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "了解 Feodra 怎样通过 GPG 签署软件包来保障您的安全。" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Fedora 项目如何使用 GPG 密钥为软件包签名?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" -"每个 Fedora Project 发布的稳定版 RPM 软件包都配有一个 GPG 签名。默认情况下,dnf " -"和图形更新工具验证这些签名并拒绝安装任何没有签名或者签名损坏的软件包。您总是应该在安装软件包之前验证其签名。这些签名可确保您要安装的软件包出自 " -"Fedora Project,且没有被提供该软件包的网页或者镜像修改(无意的或者恶意的)。" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "可从 Koji 构建系统下载的软件包不包含签名,因此您应该小心使用它们。同样,Rawhide 中的不稳定软件包也不需要签名。" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "导入公钥" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" -"该密钥位于 fedora-release 软件包中,您可在 /etc/pki/rpm-" -"gpg 目录中找到它们。请注意:在该目录中并不是所有密钥都用于 Fedora 项目 -- 有些用来签署红帽企业版 Linux " -"软件包,而有些已不再使用。如果您使用红帽企业版 Linux 软件包,请查看 https://www.redhat.com/security/team/key。在 dnf 软件库配置中已启用了 " -"Fedora 使用的密钥,因此您通常不需要手动将其导入到 rpm 数据库中。" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"除了 fedora-release 软件包和本页之外,您还可以从公钥服务器下载 Fedora 密钥,比如从 keys.gnupg.net 下载。" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" -"对于有些软件仓库,比如默认配置中的稳定和测试版软件仓库,若没有将该公钥导入到 rpm 数据库,dnf " -"可找到该软件仓库的正确公钥并在导入前询问用户以便确认。" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "您总是可以手动使用以下命令将公钥导入 RPM 数据库:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "详情请参考 rpm 手册。" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "如果您想要验证您在系统中安装的公钥与在这里列出的公钥匹配,您可以使用 GnuPG 检查公钥指纹匹配。例如:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "获取 Fedora Server:你的应用和服务的最新技术" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "易于管理" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" -"Cockpit 强大而现代的界面使系统管理变得简单容易。您可以用它查看并监视系统性能和状态,部署并管理基于容器 (container) 的服务。" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "数据库服务" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "Fedora Server 带来由 PostgreSQL 项目驱动的企业级、可扩展的开源数据库服务器。" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "完全企业域解决方案" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "打算试用 Fedora Server 吗?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "下载 Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "下载 Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64 位 %sGB 安装镜像" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "Fedora Server 安装镜像可让您为计算机制作介质以便引导安装程序将 Fedora Server 直接安装到您的硬盘。" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "要使用该镜像,您需要可创建或刻录 DVD 的驱动器或者至少跟镜像大小一样的 USB 闪存盘。" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "网络安装镜像:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64 位 %sMB 镜像" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "下载 F%(rel)s Alpha 镜像" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "下载 F%(rel)s Beta 镜像" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "获取更多 Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® 技术" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "如何将 Live 镜像转换为可引导介质?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"下载镜像之后,你可以将其制作为引导介质。将其 烧录至空白的 DVD 光盘,或者写入 " -"U 盘。" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "怎样从介质引导?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"请查询您的计算机系统的文档以了解您计算机从外部介质引导的过程。此过程可能会因您的计算机的制造商和型号差异而有所不同。你会发现 这些通用建议 很实用。" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "下载 Fedora %(rel)s %(state)s Server" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64 位 %sGB 安装镜像" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"这是预发布软件,由服务器组支持。请将问题发送至该团队的邮件列表或 freenode 上的 %(team_irc)s。" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"阅读发行注记以了解有关变化和新特性的说明。您还可以访问常见 Bug 页面来了解容易遇到的常见问题以及避免它们的方法。" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Fedora %s 何时发布?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "阅读发布计划中的所有关键日程..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"完成下载后,可验证文件的安全性和完整性。要验证您下载的镜像,请将下方的 CHECKSUM 文件下载到您镜像文件所在的目录,然后按照这些说明进行。" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "获取 Fedora Workstation:软件开发者的最佳桌面操作系统" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "这是您一直期盼的 Linux 工作站。" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation " -"是一款可靠、用户友好,面向笔记本电脑及台式机的强大操作系统。它可以满足广泛的开发需求,从编程爱好者或学生到企业环境中的专家。" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "“Fedora 提供了大量工具
使我可以顺利完成任务。
It just works.”" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM 性能工程师" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "流畅的用户接口" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "在 GNOME 3 桌面环境中专注于您的代码。GNOME 依据开发者的反馈设计从而极力降低无关干扰,使得您可以专心于重要的事情上。" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "完整的开源工具包" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"跳过寻找所需工具时的苦恼。Fedora 包含完整的开源语言、工具及辅助组件,仅需轻点鼠标或一行命令。此外它甚至还提供项目托管及 COPR " -"仓库使得您的可以快速发布代码和构建结果到社区。" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME Boxes 及其他虚拟化工具" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "使用 GNOME Boxes 快速搭建虚拟机并运行以在多平台测试您的代码。或者深入挖掘强大且可脚本化的虚拟化工具达到深度控制。" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "内建 Docker 支持" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "Fedora 提供开箱即用的诸如 Docker 之类的最新技术,可以将您的应用容器化,并将它们部署出去。" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "准备好体验 Fedora Workstation 了吗?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "下载 Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "下载 Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "%s MB Mac OS X系统的 Fedora Media Writer" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "Linux系统 64 位 %sGB ISO 镜像。" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "%s MB Windows系统的 Fedora Media Writer" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "根据你的操作系统下载 Fedora Media Writer。" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "需要指引?或不同的版本?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "正在运行 Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "要运行 Fedora Workstation,你需要:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer(在上面下载)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "至少 %s GB 可用空间的 USB 闪存盘" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"除此之外。您也可以在在具备至少 1 GHz 处理器、1 GB 内存和 10 GB 空闲硬盘的笔记本或者台式机上安装 Fedora Workstation" -" 。如有此愿的话,请在您想要安装的电脑上从 USB 存储设备运行 Live 版本 Fedora Workstation,然后按照提示完成安装即可。" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "支持的平台" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer 支持下列平台:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"我们自动检测到您正在运行 Mac OS X " -"并提供应对版本的下载。如果我们检测不正确或者您想要下载不同的版本,请点击下方的 “查看全部平台下载“ 按钮。" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"我们自动检测到您正在运行 Linux 并提供应对版本的下载。如果我们检测不正确或者您想要下载不同的版本,请点击下方的 " -"“查看全部平台下载“ 按钮。" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"我们自动检测到您正在运行 Windows " -"并提供应对版本的下载。如果我们检测不正确或者您想要下载不同的版本,请点击下方的 “查看全部平台下载“ 按钮。" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "查看所有平台下载" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "可在Fedora下通过 DNF 安装" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "更多详情" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "如何使用此 ISO?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "校验此镜像" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64 位 %sGB Live 镜像" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32 位 %sGB Live 镜像" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "网络安装镜像:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32 位 %sMB 镜像" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "发行声明" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "在 Fedora Magazine 上阅读完整的发布公告。" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr " 发行注记 " - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "了解最新版 Fedora 的改动以及最低系统要求和运行 Fedora 的最佳配置。" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr " 安装指导 " - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "我们建议您安装系统前通读此文档,因为里面回答了很多常见问题。" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "常见 Bug" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "在安装或运行 Fedora 遇到任何问题时参考的优秀资源。" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "“Live”是什么意思?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer 将会在 USB 闪存盘上创建一个完整的可立即运行的 Fedora Workstation。你可以使用 Live " -"镜像来测试并运行 Fedora 而不需要改动任何硬盘数据。" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "当您准备好,可以从 Live 版本的 Fedora Workstation 镜像安装 Fedora 到您的硬盘。" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora 定制版" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora 实验室" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "下载 Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "下载 Fedora %(rel)s %(state)s Workstation" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"这是预发布软件,由工作站组支持。请将问题发送至该团队的邮件列表或 freenode 上的 %(team_irc)s。" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "正在运行预先发布版的 Fedora Workstation" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "要运行预先发布的 Fedora Workstation,你需要:" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "Fedora Media Writer(下面可以下载)" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "您想运行的预先发布的 Fedora Live ISO 镜像文件" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "警告:这个过程会破坏您 USB 设备上的所有数据。请确保这么做之前已经将 USB 设备上的重要文件备份。" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "在下方下载Fedora Media Writer。" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "下载想要的 Fedora ISO 镜像" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "打开 Fedora Media Writer。您可能需要提供密码以便让此软件可以根据权限运行。" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "从列表里选择“自定义操作系统...”。" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "在自定义操作系统页面,选择“选择 Live ISO”按扭。" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "在文件选择窗口中,定位并选择您下载的 ISO 镜像。" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" -"插入您的 USB 存储器到电脑。如果您曾经使用该 USB 存储器创建 Live " -"介质,那么您可能需要将其恢复至出厂设定。在该情况下程序将询问您是否要这么做。" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "选择 “写入 Live USB” 来写入镜像。耐心等待直到过程结束后再移除介质并关闭应用。" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"如何测试预发布版本" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "如何帮助测试 Fedora 预发布版本的 Fedora Wiki 指南。" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "架构" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "根存储" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "启动 AMI 虚拟机" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "选择距离最近的区域" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 位 (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 位 (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "运行吧!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "出口法规" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "阅读完整出口法规" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "点击并下载 Fedora 意味着您同意并遵循下列条款和条件。" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "了解更多 >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "关于" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "关于 Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "赞助方" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora 社区杂志" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "法律" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "获得 Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "获得 Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "获得 Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "其它下载" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "支持" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "获得帮助" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "Fedora 知识库" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "常见错误" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora 开发者中心" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "安装指南" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "加入" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "加入 Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Planet Fedora" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora 特别兴趣组" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora 账户系统" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora 社区" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora 由红帽赞助。" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "了解更多红帽与 Fedora 关系的信息 »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s 红帽公司及其他。" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "请将任何评论或者更正发送至 网站团队." - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "更改语言" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "确定" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"更多关于 \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "简约,强大。为云而生。" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "最新的技术,坚实的基础。协同助力您的应用及服务。" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "文档及其他资源" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "获得安装介质的其他方式" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "您可以从网上经销商或您所在地的本地经销商购买 Fedora 安装介质。" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "负担不起购买费用吗?可以到Fedora 免费介质计划申请 Fedora 安装介质。" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG 公钥信息" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "公钥 ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "指纹" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "获得自:" diff --git a/getfedora.org/po/zh_HK.po b/getfedora.org/po/zh_HK.po deleted file mode 100644 index cd291bf..0000000 --- a/getfedora.org/po/zh_HK.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Chinese (Hong Kong SAR China)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-HK\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/po/zh_TW.po b/getfedora.org/po/zh_TW.po deleted file mode 100644 index ddf0a34..0000000 --- a/getfedora.org/po/zh_TW.po +++ /dev/null @@ -1,2540 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2014 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# -# Translators: -# Cheng-Chia Tseng , 2015. #zanata -# Cheng-Chia Tseng , 2016. #zanata -# Cheng-Chia Tseng , 2017. #zanata -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-05-13 22:03+0200\n" -"PO-Revision-Date: 2017-11-17 09:40-0500\n" -"Last-Translator: Cheng-Chia Tseng \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" -"Language: zh-TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 data/templates/footer.html:21 -msgid "Fedora Code of Conduct" -msgstr "Fedora 行為規章" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "Fedora 的行為規章" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "要成為社群一員,請遵守行為規章。" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "行為規章" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" -"Fedora " -"社群是由來自世界各地的一群專家與志工構成的混合體,大家一起努力打造散布版的每個層面,從寫程式碼到幫忙行銷等都是。多樣性是我們的一大優勢,但同時也帶來一些溝通問題與不開心。因此,我們設立了些基本規則,希望大家在運用專案資源時能一同遵守。" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "這份規章並不是要寫出你什麼不能做的繁瑣列表。相反的,請試圖理解它所體現的精神 - 讓人與人之間彼此好好對待,變得更簡單的原則指引。" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" -"做事要設身處地。你做事的成果會為他人所用,同樣你也會用到別人做出來的東西。你所做的任何決定都會影響其他使用者及同儕,因此做決定之前要先考慮其後果。" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" -"要尊重別人。我們不一定時時刻刻都能對同件事有共識,但不同意並不等於能行為不良、口出惡言。不論現在和未來,我們都可能遇到棘手的事,但無論如何都不能將挫折轉為人身攻擊。記住,一個社群中如果大家都不開心,或覺得受到欺侮,那能產生的成果也很有限。不管是對其他貢獻者、Fedora" -" 社群以外的人、以及 Fedora 使用者等,Fedora 社群的成員都應尊重他們。" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" -"當我們抱持不同想法時,我們應試圖瞭解原因。幾乎任何時刻我們都可能有所不同意,不管是社交層面、技術層面都是如此;當然,Fedora " -"也不例外。重要的是,我們應該建設性地處理這些不同意見與相異的看法。" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" -"請記住我們生來就與眾不同。Fedora " -"的優勢就是社群的多樣,這些人來自四面八方,背景各自不同。即使是同件事,不同的人來看就會有不一樣的看法。無法理解為何某人會抱持某種觀點,並不代表那個人的想法就是錯的。可別忘了人類總是在犯錯,責怪他人並不會讓我們前進,我們依舊留在原地,問題尚未解決,同時也無助於我們從錯誤中學習。" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "取得 Fedora:下載我們以 Linux 為底的作業系統,適合開發者、作桌面應用、運行容器…等" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "選擇自由。選擇 Fedora。" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "設定更少,創新更多。選擇符合你需求的

Fedora 專門打造版,一下子就能運作得宜。" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "Fedora %(rel)s %(state)s 已發行!請到「下載」區塊測試。" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "Fedora %(rel)s 已發行!立刻取得。" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "工作站" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "立刻下載" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" -"Fedora Workstation 是給筆記型電腦、桌上型電腦使用的作業系統,盡心打造,簡單易用;提供完善的工具組給各類開發者與自造者運用。" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:131 -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/server/index.html:22 -#: data/content/server/index.html:139 data/content/server/index.html:145 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "立刻下載" - -#: data/content/index.html:86 data/content/verify.html:54 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "伺服器" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "Fedora Server 是強大又不失彈性的作業系統,內含最好、最新的資料中心科技。它讓你一手掌控所有的基礎設施與服務。" - -#: data/content/index.html:101 data/content/verify.html:69 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "Atomic" - -#: data/content/atomic/index.html:19 data/content/index.html:107 -#: data/content/index.html:144 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "Fedora Atomic 提供 Linux-Docker-Kubernetes (LDK) 應用堆疊的最佳平臺。" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" -"Fedora 永遠讓任何人自由使用、自由修改、自由散布。Fedora 是由全球各地的朋友一同努力,結合成為 Fedora Project " -"社群一心打造而成,讓社會大眾使用。" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "需要其他 Fedora 選擇嗎?" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" -"Fedora 社群也有發行 ARM 映像檔、其他 Live" -" Spin、還有為各種特殊需求量身定製的 Fedora 特別版。請前往 Fedora SpinsFedora Labs 網站瀏覽這些版本。" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "隨時連結,即刻瞭解。" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" -"想要參與我們嗎?想知道社群最近有什麼新鮮事嗎?讀讀 Fedora Magazine 追蹤最新消息與瀏覽酷玩意吧。" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "閱讀文件。" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" -"查閱《發行備註》瞭解目前此發行版的詳細資訊。若想瞭解更多 Fedora 的使用提點與相關細節,如系統需求等,請見 官方文件。" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "取得協助。" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" -"Fedora 使用上需要幫忙嗎?前往 Ask Fedora " -"看看,你可以在那裡查閱其他使用者詢問過的問題檔案庫,或是問問你自身遇到的問題。" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "Fedora 贊助商" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "Fedora 專案以下列組織的贊助為傲..." - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "主要贊助商" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" -"Red Hat, Inc. 是 Fedora 專案的主要贊助商。Red Hat 為 Fedora " -"提供各類資源,包括全職員工支援、基礎設施硬體、網路頻寬、活動資金、法律諮詢...等。" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "Fedora 專案也非常感激下列贊助商提供實質的支援:" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "對贊助 Fedora 什麼事物有興趣嗎?" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" -"請聯絡 admin@fedoraproject.org,或是到 " -"irc.freenode.net 上的 #fedora-admin " -"頻道駐足停留一下。" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "核驗你下載的映像檔" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "CHECKSUM 與核驗指示" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "我該如何核驗我的映像檔?" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "一旦你下載完映像檔,記得核驗檔案是否完整正確。若要核驗映像檔,請下載對應的 CHECKSUM 檔到你下載之映像檔所在資料夾中以便核驗。" - -#: data/content/verify.html:41 data/content/verify.html:56 -msgid "For 64-bit images" -msgstr "給 64 位元映像檔使用" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "給 32 位元映像檔使用" - -#: data/content/verify.html:47 -msgid "For Atomic WS" -msgstr "" - -#: data/content/verify.html:59 -msgid "For aarch64 images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For aarch64 raw" -msgstr "" - -#: data/content/verify.html:71 -msgid "For Atomic Host Iso" -msgstr "給 Atomic Host Iso 使用" - -#: data/content/verify.html:74 -msgid "For Atomic Host images" -msgstr "給 Atomic Host 映像檔使用" - -#: data/content/verify.html:77 -msgid "For Container" -msgstr "" - -#: data/content/verify.html:84 -msgid "Next, import Fedora's GPG key(s):" -msgstr "下一步,匯入 Fedora 的 GPG 金鑰:" - -#: data/content/verify.html:86 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "你可以從這裡核驗 GPG 金鑰的詳細資料。" - -#: data/content/verify.html:87 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "現在,核驗 CHECKSUM 檔案是否有效:" - -#: data/content/verify.html:89 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "CHECKSUM 檔案應有來自於以下金鑰之一的簽章:" - -#: data/content/keys/index.html:46 data/content/verify.html:91 -msgid "Fedora 29" -msgstr "" - -#: data/content/keys/index.html:59 data/content/verify.html:92 -msgid "Fedora 28" -msgstr "Fedora 28" - -#: data/content/keys/index.html:72 data/content/verify.html:93 -msgid "Fedora 27" -msgstr "Fedora 27" - -#: data/content/keys/index.html:85 data/content/verify.html:94 -msgid "Fedora 26" -msgstr "Fedora 26" - -#: data/content/verify.html:95 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "Fedora 26 第二支援架構 (AArch64、PPC64、PPC64le、s390 和 s390x)" - -#: data/content/verify.html:97 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "最後,現在 CHECKSUM 檔案已經過核驗,請檢查 ISO 檔案的 checksum 是否相符:" - -#: data/content/verify.html:99 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "若輸出內容表示檔案有效,那麼你就可以開始了!" - -#: data/content/verify.html:100 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "我該如何用其他作業系統核驗下載的映像檔?" - -#: data/content/verify.html:101 -msgid "Read these instructions to verify your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "取得 Fedora Atomic:你容器化應用堆疊的最佳平臺" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "利用不變異的基礎設施佈署並擴展你的容器化應用。" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "下載或在公有雲上啟動" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" -"「我們選擇用 Fedora Atomic 作為 Navops Launch — Kubernetes 叢集供應解決方案的基礎,因為我們的客戶信任 Red" -" Hat 並且已經有過運行 Red Hat 作業系統的經驗。我們最愛 Fedora Atomic 的不異變特質,完美貼合容器化環境。」" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "首席架構師,Navops by Univa" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "Atomic Host" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "Project Atomic 提供的 Atomic Host 具備輕量、不變異平臺的特性,專為運行容器化應用而設計。" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "Fedora 的 Atomic Host 版本使用與 Fedora Server 相同的軟體庫,提供最新版的 Atomic。" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "OStree 更新" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "自動從最新的上游 OStree 更新你的系統;這能讓你每臺伺服器完全一致,甚至在升級發生問題時還可輕鬆倒回。" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "Atomic CLI" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "使用便利的指令列工具管理 Docker 容器、系統容器、Atomic App、和其他。" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "已為 Kubernetes 和 OpenShift 最佳化" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" -"在打造 Kubernetes 或 Origin 叢集以執行你的容器化應用?就用 Fedora Atomic " -"執行,以小型、簡潔的作業系統提供你所需的平臺。" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "準備好一探 Fedora Atomic 了嗎?" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Atomic Host" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "感謝你下載 Fedora!" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "你的下載應該在幾秒內會開始。如果沒有,請點擊下方的連結:" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "核驗你的下載是否完整!" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:120 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"一旦你下載完映像檔後,請核驗映像檔完整性以確認安全。若要核驗你的映像檔,請下載對應的 CHECKSUM 檔到與映像檔相同的下載目錄中,並遵循 此述指示。" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:45 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Verify!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "下載 Fedora Atomic" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "下載 Fedora %(rel)s Atomic Host" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "Atomic Host 約每兩週 build 一次。" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" -"最近這兩週內的組建版尚未符合我們的測試標準。此處可用的映像檔由 %(atomic_age)s 天以前發布。請查看 Project Atomic " -"網誌瞭解最新消息與 Atomic blocker bug 的相關資訊。" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "這些是最新的官方 Fedora Atomic Host 映像檔,%(atomic_age)s 天之前製作。" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "Atomic Host 映像檔" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" -"Fedora Atomic Host 是採用 Project Atomic 模型的先進領導基礎作業系統。它專為 Kubernetes " -"與容器設計。此處發布的映像檔展示我們的成果。這些映像檔已經通過許多層次的自動化測試。" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "用於 Amazon Public Cloud EC2 的 Atomic Host 映像檔" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "GP2 格式" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "GP2 格式 AMI 使用更快的 SSD 儲存裝置;使用這些 AMI 可更具速度,但請注意到你在儲存上的花費將比一般狀況更高。" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "GP2 HVM AMI" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "關閉" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "Fedora %(rel)s GP2 Atomic Host HVM AMI" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "區域" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "AMI ID" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "啟動" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "標準格式)" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "若你不常存取資料並且想要壓低儲存上的花費,標準格式 AMI 較適合你。" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "標準 HVM AMI" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "標準格式" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "適用 Vagrant 的 Atomic Host 映像檔" - -#: data/content/atomic/download/index.html:212 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Vagrant Cloud." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "檢視 Vagrant 下載" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "Vagrant 映像檔下載" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "這些 Vagrant Boxes 映像檔適合 Vagrant佈署採用。" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "VirtualBox 映像檔" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "若你正在 Mac OS X 或 Windows 上使用 Vagrant,這很可能是你會想用的映像檔。" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:90 -#: data/content/workstation/prerelease/index.html:99 -#: data/content/workstation/prerelease/index.html:111 -#: data/templates/footer.html:38 -msgid "Download" -msgstr "下載" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "64 位元 %sMB VirtualBox 基礎 Vagrant 映像檔" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "libvirt/KVM 映像檔" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "若你正在 Fedora 上使用 Vagrant,那麼這會是你想要使用的映像檔。" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "64 位元 %sMB libvirt/KVM 基礎 Vagrant 映像檔" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "使用 Vagrant 工具檢視下載" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "qcow2 映像檔" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "這是 Fedora %(rel)s Cloud Atomic Host 的 Qcow2 格式映像檔,適用於 OpenStack。" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "64 位元 %sMB Qcow2 映像檔" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "原生映像檔" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "這是 Fedora %(rel)s Cloud Atomic Host 的壓縮後原生映像檔格式。若你還不確定該使用哪一種,請使用這種格式。" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "64 位元 %sMB xz 壓縮原生映像檔" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:51 -#: data/content/server/prerelease/index.html:51 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:131 -msgid "Other Downloads" -msgstr "其他下載" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Container Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:72 -#: data/content/server/download/index.html:82 -#: data/content/workstation/download/index.html:160 -#: data/content/workstation/download/index.html:170 -msgid "Try a pre-release" -msgstr "試試預先發行版" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:73 -#: data/content/server/download/index.html:83 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "We're working on our next release." -msgstr "我們正在處理下個發行版。" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:74 -#: data/content/server/download/index.html:84 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "幫助我們準備 F%(rel)s!" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "下載 F%(rel)s %(state)s 映像檔" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:76 -#: data/content/server/download/index.html:86 -#: data/content/workstation/download/index.html:164 -#: data/content/workstation/download/index.html:174 -msgid "How to test pre-releases" -msgstr "如何測試預先發行版" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:143 -msgid "Resources" -msgstr "資源" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" -"Project " -"Atomic:入門" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "使用 Project Atomic / Atomic Host 的入門文件" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" -"Project" -" Atomic:郵遞清單" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "訂閱 atomic@projectatomic.io 加入上游郵遞清單。" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "Project Atomic:IRC 聊天" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" -"加入 irc.freenode.org 上的 #atomic " -"Project Atomic 頻道。" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:103 -#: data/content/workstation/download/index.html:221 -msgid "Verify" -msgstr "核驗" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:106 -#: data/content/server/prerelease/index.html:41 -#: data/content/workstation/download/index.html:224 -#: data/content/workstation/prerelease/index.html:119 -msgid "Verify your Image" -msgstr "核驗你的映像檔" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" -"所有相關問題與臭蟲回報皆應透過 Red Hat Bugzilla 提報。Fedora " -"專案對於產品之適用性與可用性並無任何保證。" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:208 -#, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" -"這是 Fedora %(rel)s %(state)s Cloud Atomic Host " -"的壓縮後原生映像檔格式。若你還不確定該使用哪一種,請使用這種格式。" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "Fedora 專案 - 找不到頁面" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "404:找不到頁面" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "深感抱歉,我們找不到你所要的檔案或頁面。" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "疑難排解提點" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "若你是手動輸入 URL 的話,請再次仔細檢查輸入的 URL 是否無誤。你是否複製對 URL?" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "連結不良?請聯絡 網站管理員,解釋你是連到哪個連結才來到這裡的。" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" -"該頁面或檔案可能已搬離原始位置。請查看 主網站 或搜尋我們的 wiki。" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "軟體包簽章金鑰" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "此頁面列出 Fedora 中用來簽署軟體包的公開 GPG 金鑰。" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "瞭解 Fedora 如何保護你。" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "Fedora 善用 GPG 軟體包簽署以確保軟體包的完整性未受他人破壞。" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "閱讀常見問答集來深入瞭解 »" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "目前使用的金鑰" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:85 -#: data/content/keys/index.html:110 data/content/keys/index.html:123 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 data/content/keys/obsolete.html:422 -msgid "Primary" -msgstr "主要" - -#: data/content/keys/index.html:85 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Secondary" -msgstr "次要" - -#: data/content/keys/index.html:110 -msgid "EPEL 7" -msgstr "EPEL 7" - -#: data/content/keys/index.html:123 -msgid "EPEL 6" -msgstr "EPEL 6" - -#: data/content/keys/index.html:138 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "你在找 棄用的金鑰嗎?" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "棄用的軟體包簽章金鑰" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "此頁面列出 Fedora 中不再用來簽署軟體包的公開 GPG 金鑰。" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "棄用的與未使用的金鑰" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "Fedora <= 9" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "Fedora GPG 金鑰" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "Fedora >= 7 測試" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "Fedora 測試" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" -"若你想參與軟體包的測試,你得使用此金鑰來核驗這些測試軟體包。該金鑰會簽署 fedora-testing " -"軟體庫中的軟體包。請參閱 http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html 以取得此金鑰為何會棄用的相關資訊。" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "Fedora 8-9" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "Fedora 8-9 測試" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "Fedora 10" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "Fedora 10 測試" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "Fedora 11" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "Fedora 12" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "Fedora 13" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "Fedora 14" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "s390x" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "Fedora 15" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "Fedora 16" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "Fedora 17" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "Fedora 18" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "Fedora 19" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "Fedora 20" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "Fedora 21" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "Fedora 22" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "Fedora 23" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "Fedora 24" - -#: data/content/keys/obsolete.html:401 -msgid "Fedora 25" -msgstr "Fedora 25" - -#: data/content/keys/obsolete.html:422 -msgid "EPEL 5" -msgstr "EPEL 5" - -#: data/content/keys/obsolete.html:435 -msgid "EPEL 4" -msgstr "EPEL 4" - -#: data/content/keys/obsolete.html:435 -msgid "RPM-GPG-KEY-EPEL" -msgstr "RPM-GPG-KEY-EPEL" - -#: data/content/keys/obsolete.html:448 -msgid "Fedora Extras" -msgstr "Fedora Extras" - -#: data/content/keys/obsolete.html:448 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" -"若你正在使用 Fedora Core 6 的 Fedora Extras,請使用來自 extras " -"軟體庫的此軟體包。此金鑰在 Fedora Core 6 及 Extras 到生命週期完結 (2007 年 12 月 7 日) " -"後便不再使用。此金鑰並不包含在 Fedora 7 及更新版本的 fedora-release 軟體包中。" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "Legacy" -msgstr "Legacy" - -#: data/content/keys/obsolete.html:465 data/content/keys/obsolete.html:480 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" -"此金鑰曾用於「Fedora Legacy」專案所發行的軟體包,藉以更新官方生命週期已經結束的發行版本。「Fedora " -"Legacy」計畫已終止許久,因而此金鑰不再用來簽署軟體包。此金鑰並不包含在 Fedora 7 及後續版本的 fedora-" -"release 軟體包中。" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "軟體包簽署 FAQ" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "瞭解 Fedora 如何善用 GPG 簽署軟體包以確保你的使用安全。" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "Fedora 專案如何使用 GPG 金鑰來簽署軟體包?" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "匯入金鑰" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" -"除了 fedora-release 軟體包與此網頁之外,你還可以從公開的金鑰伺服器下載 Fedora 金鑰,例如 keys.gnupg.net。" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "你總是可以手動使用下列指令來將金鑰匯入 RPM 資料庫中:" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "詳情請參閱 rpm 指南。" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "若你希望驗證安裝在你系統上的金鑰是否符合列在此的金鑰,你可使用 GnuPG 來檢查金鑰的指紋是否符合。例如:" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "取得 Fedora Server:你程式與服務的最新科技" - -#: data/content/server/index.html:20 -msgid "" -"Run your applications on a Linux server OS with the latest open source " -"technology." -msgstr "" - -#: data/content/server/index.html:21 -msgid "" -"Now with content in multiple versions on independent lifecycles — so your " -"server can move both fast and slow." -msgstr "" - -#: data/content/server/index.html:37 -msgid "Fedora Server" -msgstr "Fedora Server" - -#: data/content/server/index.html:38 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators, experienced with any OS," -" to make use of the very latest technologies available in the open source " -"community." -msgstr "" - -#: data/content/server/index.html:52 -msgid "Introducing Modularity" -msgstr "" - -#: data/content/server/index.html:53 -msgid "" -"Modularity brings a new Modular repository providing additional versions of " -"software on independent lifecycles." -msgstr "" - -#: data/content/server/index.html:54 -msgid "" -"Choose the right version of an application or a language stack you need, and" -" keep it even when your OS upgrades to a newer version." -msgstr "" - -#: data/content/server/index.html:55 -msgid "Learn more about Modularity" -msgstr "" - -#: data/content/server/index.html:66 -msgid "Easy Administration" -msgstr "簡易管理" - -#: data/content/server/index.html:67 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "利用 Cockpit 強大、現代的介面輕鬆管理你的系統。檢視並監管系統效能與狀態,以及部署與管理基於容器技術的服務。" - -#: data/content/server/index.html:98 -msgid "Database Services" -msgstr "資料庫服務" - -#: data/content/server/index.html:99 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "Fedora Server 搭載開源的 PostgreSQL 專案,帶給你企業級、可延展的資料庫伺服器。" - -#: data/content/server/index.html:109 -msgid "Complete Enterprise Domain Solution" -msgstr "完整的企業網域解決方案" - -#: data/content/server/index.html:110 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the open-source domain controller." -msgstr "" - -#: data/content/server/index.html:125 -msgid "" -"“For DevConf US, I needed a system to manage the conference. I discovered " -"regcfp, by Patrick Uiterwijk, which seemed to suit my needs. However, it " -"won't run in nodejs 8 in F27. Launching F28 Server, choosing the " -"\"nodejs:6\" stream, worked like a charm!”" -msgstr "" - -#: data/content/server/index.html:126 -msgid "DevConf US Conference Co-Chair" -msgstr "" - -#: data/content/server/index.html:139 data/content/server/index.html:144 -msgid "Ready to give Fedora Server a try?" -msgstr "準備好一試 Fedora Server 了嗎?" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "下載 Fedora Server" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "下載 Fedora %(rel)s Server" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "64 位元 %sGB 安裝用映像檔" - -#: data/content/server/download/index.html:42 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "Fedora Server 安裝映像檔讓你製作可開機進入安裝程式,直接將 Fedora Server 安裝到你硬碟中的媒體" - -#: data/content/server/download/index.html:43 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "若要使用此映像檔,你需要可以製作或說是「燒錄」DVD 的裝置,或者是容量至少略大於這份映像檔的 USB 隨身碟。" - -#: data/content/server/download/index.html:45 -#, python-format -msgid "" -"If you would like to try out the new modular features of Fedora Server, " -"please visit the Using Modules section of the " -"Modularity Documentation. If you would like more information about " -"Modularity in general, please see the website on " -"pagure." -msgstr "" - -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:53 -msgid "Netinstall Image:" -msgstr "Netinstall 映像檔:" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:55 -#: data/content/workstation/download/index.html:151 -#: data/content/workstation/prerelease/index.html:138 -#, python-format -msgid "64-bit %sMB image" -msgstr "64 位元 %sMB 映像檔" - -#: data/content/server/download/index.html:56 -#: data/content/server/download/index.html:60 -#: data/content/server/download/index.html:64 -#, python-format -msgid "aarch64 %sMB image" -msgstr "" - -#: data/content/server/download/index.html:58 -msgid "DVD ISO Image:" -msgstr "" - -#: data/content/server/download/index.html:62 -msgid "Raw Disk Image:" -msgstr "" - -#: data/content/server/download/index.html:71 -#: data/content/workstation/download/index.html:159 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "F%(rel)s Alpha" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:163 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "下載 F%(rel)s Alpha 映像檔" - -#: data/content/server/download/index.html:81 -#: data/content/workstation/download/index.html:169 -#, python-format -msgid "F%(rel)s Beta" -msgstr "F%(rel)s Beta" - -#: data/content/server/download/index.html:85 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "下載 F%(rel)s Beta 映像檔" - -#: data/content/server/download/index.html:92 -#: data/content/workstation/download/index.html:206 -msgid "Get more Fedora" -msgstr "取得其他類型的 Fedora" - -#: data/content/server/download/index.html:96 -#: data/content/workstation/download/index.html:215 -msgid "ARM® Technology" -msgstr "ARM® 科技" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "我該如何將 Live 映像檔轉變成可開機的媒體?" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" -"在你下載完映像檔後,你需要用它製作出可開機媒體。可以 將映像檔燒錄至空白 DVD 光碟中,或是 將映像檔寫入 USB 隨身碟中。" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "我該如何從那份媒體開機?" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" -"請查閱你電腦系統隨附的文件,瞭解如何從內建硬碟以外媒體開機的操作程序。操作步驟根據電腦的製造商與型號不同會有所差異。你可以參考 這些通用的秘訣,可能會對你有所幫助。" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Server" -msgstr "下載 Fedora %(rel)s %(state)s 伺服器" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "64 位元 %sGB 安裝映像檔" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"這是預先發行軟體,由 Server Working Group " -"給予支援。請將遇到的問題直接提到他們的 郵遞清單/a>,或是 freenode 上的 " -"%(team_irc)s。" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" -"請閱讀 發行備註 瞭解更多更動與新功能的相關資訊,還有閱讀 常見臭蟲 頁面瞭解常遇到的臭蟲,以及避開它們的方法。" - -#: data/content/server/prerelease/index.html:38 -#: data/content/workstation/prerelease/index.html:55 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "Fedora %s 何時會發行?" - -#: data/content/server/prerelease/index.html:39 -#: data/content/workstation/prerelease/index.html:56 -msgid "Read all the key milestones of the release schedule..." -msgstr "閱讀發行時程中的所有關鍵里程碑..." - -#: data/content/server/prerelease/index.html:42 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" -"一旦你下載完映像檔後,請核驗映像檔完整性以確認安全。若要核驗你的映像檔,請下載對應的 CHECKSUM 檔到與映像檔相同的下載目錄中,並遵循此述指示。" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "取得 Fedora Workstation:適合軟體開發者的最佳桌面應用作業系統" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "這是你引領期盼的 Linux 工作站。" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" -"Fedora Workstation " -"是適合你筆記型電腦或桌上型電腦使用的作業系統,可靠、友善、強大。它支援各式各樣類型的開發者,包括電腦愛好者、學生,到企業環境中的職業人士等。" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "「Fedora 提供的海量工具
讓我能好好地完成工作。
它就是行。」" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "JVM 效能工程師" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "乾淨俐落的使用介面" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" -"GNOME 3 桌面環境讓你更能專注於你的程式碼。GNOME 根據開發者的意見回饋建構而成,將讓你分心的機會減到最低,所以你就能專心處理重要的事情。" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "完善的開放源碼工具組" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" -"你不再需要拖著腳步嘗試找出或建置出你所需要的工具了。有了 Fedora " -"對開源語言、工具、公用程式的完整組合,什麼事都只要點個滑鼠,或是打個指令就行。還有 COPR " -"這樣的專案代管與軟體庫,讓你的程式碼與組建成果都能快速分享給社群使用。" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "GNOME 機櫃與其他虛擬工具" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "透過 GNOME 機櫃設好虛擬機器,迅速執行,在多重平臺上測試撰寫的程式代碼。或是深入強大、可用指令稿操作的虛擬化工具,獲取更多的控制權。" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "內建 Docker 支援" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "一裝好 Fedora 就能使用 Docker 之類的最新技術,將你的程式容器化,或是佈署容器化過後的程式。" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "準備好體驗 Fedora Workstation 了嗎?" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "下載 Fedora Workstation" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "下載 Fedora %(rel)s Workstation" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:87 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "Mac OS X 平臺的 %s MB Fedora Media Writer" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:109 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "Linux 平臺的 64 位元 %s GB ISO。" - -#: data/content/workstation/download/index.html:46 -#, python-format -msgid "" -"A download is only needed for new installs. To upgrade, follow these instructions." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:96 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "Windows 平臺的 %s MB Fedora Media Writer" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "下載對應你作業系統的 Fedora Media Writer。" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "需要指示嗎?或是其他版本?" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "運行 Fedora Workstation" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "若要運行 Fedora Workstation,你需要有:" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "Fedora Media Writer (上面可下載)" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:64 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "USB 隨身碟,至少 %s GB 可用空間" - -#: data/content/workstation/download/index.html:71 -#, python-format -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program for your supported platform and follow the " -"prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" -"你可以選擇將 Fedora Workstation 安裝到筆電上或桌電上,硬體部分至少要具備 1 GHz 的處理器、1 GB 的 RAM、10 GB " -"的可用空間。若要安裝,請在你想要安裝的電腦上使用 USB 隨身碟執行 Fedora Workstation 的 Live 版本,作法:執行 Fedora" -" Media Writer 應用程式、遵照螢幕上的提示完成隨身碟製作並展開安裝。" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:80 -msgid "Supported Platforms" -msgstr "支援的平臺" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:81 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "Fedora Media Writer 支援下列平臺:" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:86 -msgid "Mac OS X" -msgstr "Mac OS X" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:95 -msgid "Windows" -msgstr "Windows" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:104 -msgid "Linux" -msgstr "Linux" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"我們自動偵測到你正在使用 Mac OS " -"X,並為你提供對應版本可下載。如果我們偵測錯誤,或是你想要下載不同版本,請點按下面的「檢視所有平臺的下載」按鈕。" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" -"我們自動偵測到你正在使用 " -"Linux,並為你提供對應版本可下載。如果我們偵測錯誤,或是你想要下載不同版本,請點按下面的「檢視所有平臺的下載」按鈕。" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" -"我們自動偵測到你正在使用 " -"Windows,並為你提供對應版本可下載。如果我們偵測錯誤,或是你想要下載不同版本,請點按下面的「檢視所有平臺的下載」按鈕。" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "檢視所有平臺的下載" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:105 -msgid "Available via DNF for Fedora" -msgstr "Fedora 可透過 DNF 取用" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:106 -msgid "More details" -msgstr "更多細節" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:110 -msgid "How to use this ISO?" -msgstr "如何使用這個 ISO 檔?" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:112 -msgid "Verify this image" -msgstr "核驗這個映像檔" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:132 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "64 位元 %sGB Live 映像檔" - -#: data/content/workstation/download/index.html:147 -#: data/content/workstation/prerelease/index.html:133 -#, python-format -msgid "32-bit %sGB Live image" -msgstr "32 位元 %sGB Live 映像檔" - -#: data/content/workstation/download/index.html:149 -#: data/content/workstation/prerelease/index.html:136 -msgid "Netinstall Images:" -msgstr "網路安裝用映像檔:" - -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:139 -#, python-format -msgid "32-bit %sMB image" -msgstr "32 位元 %sMB 映像檔" - -#: data/content/workstation/download/index.html:183 -msgid "Try Atomic Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "Atomic provides an immutable OS image and updates via OSTree." -msgstr "" - -#: data/content/workstation/download/index.html:186 -#, python-format -msgid "64-bit %sGB Atomic image" -msgstr "" - -#: data/content/workstation/download/index.html:188 -msgid "Learn more" -msgstr "" - -#: data/content/workstation/download/index.html:193 -#, python-format -msgid "Release Announcement" -msgstr "發行公告" - -#: data/content/workstation/download/index.html:194 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "閱讀 Fedora Magazine 上的發行公告全文。" - -#: data/content/workstation/download/index.html:195 -#, python-format -msgid "Release Notes" -msgstr "發行備註" - -#: data/content/workstation/download/index.html:196 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "瞭解最新 Fedora 版本的更動之處,以及執行 Fedora 的最低硬體需求、建議需求等。" - -#: data/content/workstation/download/index.html:197 -#, python-format -msgid "Installation Guide" -msgstr "安裝指引" - -#: data/content/workstation/download/index.html:198 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "我們建議你在安裝到系統之前先看過這份指引,因為裡面可能有許多常見問題的答案。" - -#: data/content/workstation/download/index.html:199 -#: data/content/workstation/prerelease/index.html:144 -#, python-format -msgid "Common Bugs" -msgstr "常見臭蟲" - -#: data/content/workstation/download/index.html:200 -#: data/content/workstation/prerelease/index.html:145 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "查詢你所遇 Fedora 之安裝問題或運行問題的最佳資源。" - -#: data/content/workstation/download/index.html:202 -#: data/content/workstation/prerelease/index.html:149 -msgid "What does \"Live\" mean?" -msgstr "「Live」是什麼?" - -#: data/content/workstation/download/index.html:203 -#: data/content/workstation/prerelease/index.html:150 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" -"Fedora Media Writer 會製作一份完整、可即時運行的 Fedora Workstation 到你的 USB " -"隨身碟上。你可以在不對硬碟做出任何更動的情況下,就能使用該 Live 映像檔測試 Fedora 並把玩看看。" - -#: data/content/workstation/download/index.html:204 -#: data/content/workstation/prerelease/index.html:151 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "當你準備就緒後,你還可以用這個 Fedora Workstation 的「Live」版本將 Fedora 安裝到硬碟上。" - -#: data/content/workstation/download/index.html:209 -#: data/templates/footer.html:44 -msgid "Fedora Spins" -msgstr "Fedora Spins" - -#: data/content/workstation/download/index.html:212 -#: data/templates/footer.html:45 -msgid "Fedora Labs" -msgstr "Fedora Labs" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "下載 Fedora Workstation %s" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "下載 Fedora %(rel)s %(state)s 工作站版" - -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Upgrade via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" -"這是預先發行軟體,由 Workstation Working Group " -"給予支援。請將遇到的問題直接提到他們的 郵遞清單,或是 freenode 上的 " -"%(team_irc)s。" - -#: data/content/workstation/prerelease/index.html:60 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:61 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:70 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:123 -msgid "Verify 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:126 -msgid "Verify 32-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:146 -msgid "" -"How to test pre-releases" -msgstr "" -"如何測試預先發行版" - -#: data/content/workstation/prerelease/index.html:147 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "Fedora wiki 上所載對於如何幫忙測試 Fedora 預先發行版本的指引。" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "Fedora %s " - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "架構" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "Root 商店" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "啟動 AMI 實體" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "選取最接近的區域" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "64 位元 (x86_64)" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "32 位元 (i386)" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "啟動!" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "出口管制" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "閱讀完整的出口管制規範" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "當你點按並下載 Fedora 時,代表你同意遵守下列條款與細則。" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "深入瞭解 >" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "關於" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "關於 Fedora" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "贊助商" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "Fedora Magazine" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "法律" - -#: data/templates/footer.html:41 -msgid "Get Fedora Workstation" -msgstr "取得 Fedora Workstation" - -#: data/templates/footer.html:42 -msgid "Get Fedora Server" -msgstr "取得 Fedora Server" - -#: data/templates/footer.html:43 -msgid "Get Fedora Atomic" -msgstr "取得 Fedora Atomic" - -#: data/templates/footer.html:46 -msgid "Fedora ARM®" -msgstr "Fedora ARM®" - -#: data/templates/footer.html:47 -msgid "Alternative Downloads" -msgstr "其他下載" - -#: data/templates/footer.html:54 -msgid "Support" -msgstr "支援" - -#: data/templates/footer.html:57 -msgid "Get Help" -msgstr "取得協助" - -#: data/templates/footer.html:58 -msgid "Ask Fedora" -msgstr "想問 Fedora" - -#: data/templates/footer.html:59 -msgid "Common Bugs" -msgstr "常見臭蟲" - -#: data/templates/footer.html:60 -msgid "Fedora Developer Portal" -msgstr "Fedora 開發者入口站" - -#: data/templates/footer.html:61 -msgid "Installation Guide" -msgstr "安裝指南" - -#: data/templates/footer.html:67 -msgid "Join" -msgstr "參與" - -#: data/templates/footer.html:70 -msgid "Join Fedora" -msgstr "加入 Fedora" - -#: data/templates/footer.html:71 -msgid "Planet Fedora" -msgstr "Fedora 星球" - -#: data/templates/footer.html:72 -msgid "Fedora SIGs" -msgstr "Fedora SIG" - -#: data/templates/footer.html:73 -msgid "Fedora Account System" -msgstr "Fedora 帳號系統" - -#: data/templates/footer.html:74 -msgid "Fedora Community" -msgstr "Fedora 社群" - -#: data/templates/footer.html:88 -msgid "Fedora is sponsored by Red Hat." -msgstr "Fedora 由 Red Hat 提供贊助。" - -#: data/templates/footer.html:89 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "深入瞭解 Red Hat 與 Fedora 之間的關係 »" - -#: data/templates/footer.html:90 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "© %(year)s Red Hat, Inc. 與其他人。" - -#: data/templates/footer.html:90 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "請將意見回饋或錯誤訂正寄送給 網站團隊。" - -#: data/templates/footer.html:96 -msgid "Change Language" -msgstr "變更語言" - -#: data/templates/footer.html:100 -msgid "OK" -msgstr "確定" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" -"還有更多 \"Fedora" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "精實。強大。任何雲都準備就緒。" - -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "最新科技,穩定基底。魚掌兼得,應用與服務的良伴。" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "文件與其他資源" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online " -"release notes to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation " -"Guide available. We recommend you look through it before installing to " -"your system, since it answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "取得媒體的其他方式" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "請由 網路商店 或你當地的 本地賣家 購買 Fedora 的安裝媒體。" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "無法負擔安裝媒體的價格嗎?你可以到 Fedora 免費媒體計劃 申請 Fedora 安裝媒體。" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "GPG 金鑰資訊" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "金鑰 ID" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "指紋" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "uid" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "sub" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "來源取自:" diff --git a/getfedora.org/po/zu.po b/getfedora.org/po/zu.po deleted file mode 100644 index e7a426c..0000000 --- a/getfedora.org/po/zu.po +++ /dev/null @@ -1,2356 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2017 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2017-11-14 12:29+0100\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: Zulu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zu\n" -"Plural-Forms: nplurals=1; plural=0\n" -"Generated-By: Babel 1.3\n" -"X-Generator: Zanata 3.9.6\n" - -#: data/content/code-of-conduct.html:8 -msgid "Fedora Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:18 -msgid "Fedora's Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:20 -msgid "Behave as a community member, follow the Code of Conduct." -msgstr "" - -#: data/content/code-of-conduct.html:30 -msgid "Code of Conduct" -msgstr "" - -#: data/content/code-of-conduct.html:38 -msgid "" -"The Fedora community is made up of a mixture of professionals and volunteers" -" from all over the world, working on every aspect of the distribution from " -"coding through to marketing. Diversity is one of our huge strengths, but it " -"can also lead to communication issues and unhappiness. To that end, we have " -"a few ground rules that we ask people to adhere to when they're using " -"project resources." -msgstr "" - -#: data/content/code-of-conduct.html:39 -msgid "" -"This isn't an exhaustive list of things that you can't do. Rather, take it " -"in the spirit in which it's intended - a guide to make it easier to be " -"excellent to each other." -msgstr "" - -#: data/content/code-of-conduct.html:41 -msgid "" -"Be considerate. Your work will be used by other people, and you in turn will" -" depend on the work of others. Any decision you take will affect users and " -"colleagues, and you should take those consequences into account when making " -"decisions." -msgstr "" - -#: data/content/code-of-conduct.html:42 -msgid "" -"Be respectful. Not all of us will agree all the time, but disagreement is no" -" excuse for poor behavior and poor manners. We might all experience some " -"frustration now and then, but we cannot allow that frustration to turn into " -"a personal attack. It's important to remember that a community where people " -"feel uncomfortable or threatened is not a productive one. Members of the " -"Fedora community should be respectful when dealing with other contributors " -"as well as with people outside the Fedora community and with users of " -"Fedora." -msgstr "" - -#: data/content/code-of-conduct.html:44 -msgid "" -"When we disagree, we try to understand why. Disagreements, both social and " -"technical, happen all the time and Fedora is no exception. It is important " -"that we resolve disagreements and differing views constructively." -msgstr "" - -#: data/content/code-of-conduct.html:45 -msgid "" -"Remember that we're different. The strength of Fedora comes from its varied " -"community, people from a wide range of backgrounds. Different people have " -"different perspectives on issues. Being unable to understand why someone " -"holds a viewpoint doesn't mean that they're wrong. Don't forget that it is " -"human to err and blaming each other doesn't get us anywhere, rather offer to" -" help resolving issues and to help learn from mistakes." -msgstr "" - -#: data/content/index.html:9 -msgid "" -"Get Fedora: download our Linux-based OS for developer desktops, running " -"containers, and more" -msgstr "" - -#: data/content/index.html:18 -msgid "Choose Freedom. Choose Fedora." -msgstr "" - -#: data/content/index.html:19 -msgid "" -"Less setup, more innovation. Choose a flavor of Fedora

" -"streamlined for your needs, and get to work right away." -msgstr "" - -#: data/content/index.html:32 data/content/index.html:43 -#, python-format -msgid "" -"Fedora %(rel)s %(state)s released! Test it in the Download " -"section." -msgstr "" - -#: data/content/index.html:55 -#, python-format -msgid "Fedora %(rel)s released! Get it now." -msgstr "" - -#: data/content/index.html:70 data/content/verify.html:39 -#: data/templates/productselector-workstation.html:12 -msgid "Workstation" -msgstr "" - -#: data/content/index.html:72 data/content/index.html:88 -#: data/content/index.html:103 -msgid "Download Now" -msgstr "" - -#: data/content/index.html:77 data/content/index.html:134 -msgid "" -"Fedora Workstation is a polished, easy to use operating system for laptop " -"and desktop computers, with a complete set of tools for developers and " -"makers of all kinds." -msgstr "" - -#: data/content/index.html:79 data/content/index.html:94 -#: data/content/index.html:109 data/content/atomic/index.html:125 -#: data/content/atomic/index.html:131 data/content/server/index.html:20 -#: data/content/server/index.html:125 data/content/server/index.html:131 -#: data/content/workstation/index.html:20 -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:191 -msgid "Download now" -msgstr "" - -#: data/content/index.html:86 data/content/verify.html:51 -#: data/templates/productselector-server.html:13 -msgid "Server" -msgstr "" - -#: data/content/index.html:92 data/content/index.html:139 -msgid "" -"Fedora Server is a powerful, flexible operating system that includes the " -"best and latest datacenter technologies. It puts you in control of all your " -"infrastructure and services." -msgstr "" - -#: data/content/index.html:101 data/content/verify.html:60 -#: data/templates/productselector-cloud.html:13 -msgid "Atomic" -msgstr "" - -#: data/content/index.html:107 data/content/index.html:144 -#: data/content/atomic/index.html:19 -msgid "" -"Fedora Atomic provides the best platform for your Linux-Docker-Kubernetes " -"(LDK) application stack." -msgstr "" - -#: data/content/index.html:167 -msgid "" -"Fedora is always free for anyone to use, modify, and distribute. It is built" -" and used by people across the globe who work together as a community: the " -"Fedora Project." -msgstr "" - -#: data/content/index.html:180 -msgid "Want more Fedora options?" -msgstr "" - -#: data/content/index.html:199 -msgid "" -"The Fedora community also releases ARM images, alternate live " -"Spins, and other variations of Fedora tailored to specific requirements. " -"Browse them at the Fedora " -"Spins or Fedora Labs " -"website." -msgstr "" - -#: data/content/index.html:206 -msgid "Be connected & informed." -msgstr "" - -#: data/content/index.html:216 -msgid "" -"Want to get involved? Find " -"out what's happening in the community? Read up on " -"the latest news and cool stuff at Fedora Magazine." -msgstr "" - -#: data/content/index.html:226 -msgid "Read the docs." -msgstr "" - -#: data/content/index.html:236 -#, python-format -msgid "" -"Check out the Release Notes for detailed information on the current release." -" To learn more about using Fedora and details such as system requirements, " -"see the official documentation." -msgstr "" - -#: data/content/index.html:243 -msgid "Get help." -msgstr "" - -#: data/content/index.html:253 -#, python-format -msgid "" -"Need some help with Fedora? Check out Ask Fedora, where " -"you can read archives of questions from other users, or ask your own " -"question." -msgstr "" - -#: data/content/sponsors.html:8 data/content/sponsors.html:18 -msgid "Fedora Sponsors" -msgstr "" - -#: data/content/sponsors.html:20 -msgid "" -"The Fedora Project is proud to have the following organizations as " -"sponsors..." -msgstr "" - -#: data/content/sponsors.html:29 -msgid "Primary Sponsor" -msgstr "" - -#: data/content/sponsors.html:31 -#, python-format -msgid "" -"Red Hat, Inc. is the primary sponsor for the Fedora " -"Project. Red Hat provides the Fedora project with a wide variety of " -"resources, including full-time employee support, infrastructure hardware and" -" bandwidth, event funding, and legal counsel." -msgstr "" - -#: data/content/sponsors.html:38 -msgid "" -"The Fedora Project is also grateful to the following sponsors for providing " -"substantial support:" -msgstr "" - -#: data/content/sponsors.html:98 -msgid "Interested in sponsoring something for Fedora?" -msgstr "" - -#: data/content/sponsors.html:99 -#, python-format -msgid "" -"Contact admin@fedoraproject.org or stop by " -"#fedora-admin on irc.freenode.net." -msgstr "" - -#: data/content/verify.html:8 data/content/verify.html:18 -msgid "Verify your Downloaded Image" -msgstr "" - -#: data/content/verify.html:20 -msgid "CHECKSUM and Verify Instructions" -msgstr "" - -#: data/content/verify.html:30 -msgid "How do I verify my image?" -msgstr "" - -#: data/content/verify.html:31 -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded." -msgstr "" - -#: data/content/verify.html:41 data/content/verify.html:53 -msgid "For 64-bit images" -msgstr "" - -#: data/content/verify.html:44 -msgid "For 32-bit images" -msgstr "" - -#: data/content/verify.html:62 -msgid "For Atomic Host Iso" -msgstr "" - -#: data/content/verify.html:65 -msgid "For Atomic Host images" -msgstr "" - -#: data/content/verify.html:68 -msgid "For Docker" -msgstr "" - -#: data/content/verify.html:75 -msgid "Next, import Fedora's GPG key(s):" -msgstr "" - -#: data/content/verify.html:77 -#, python-format -msgid "" -"You can verify the details of the GPG key(s) here." -msgstr "" - -#: data/content/verify.html:78 -msgid "Now, verify that the CHECKSUM file is valid:" -msgstr "" - -#: data/content/verify.html:80 -msgid "" -"The CHECKSUM file should have a good signature from one of the following " -"keys:" -msgstr "" - -#: data/content/verify.html:82 data/content/keys/index.html:46 -msgid "Fedora 28" -msgstr "" - -#: data/content/verify.html:83 data/content/keys/index.html:59 -msgid "Fedora 27" -msgstr "" - -#: data/content/verify.html:84 data/content/keys/index.html:72 -msgid "Fedora 26" -msgstr "" - -#: data/content/verify.html:85 -msgid "Fedora 26 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:86 data/content/keys/index.html:93 -msgid "Fedora 25" -msgstr "" - -#: data/content/verify.html:87 -msgid "Fedora 25 secondary arches (AArch64, PPC64, PPC64le, s390 and s390x)" -msgstr "" - -#: data/content/verify.html:89 -msgid "" -"Finally, now that the CHECKSUM file has been verified, check that the " -"image's checksum matches:" -msgstr "" - -#: data/content/verify.html:91 -msgid "If the output states that the file is valid, then it's ready to use!" -msgstr "" - -#: data/content/verify.html:92 -msgid "How do I verify my downloaded image on another operating system?" -msgstr "" - -#: data/content/verify.html:93 -msgid "Read these instructions to validate your image." -msgstr "" - -#: data/content/atomic/index.html:8 -msgid "" -"Get Fedora Atomic: the best platform for your containerized applications " -"stack" -msgstr "" - -#: data/content/atomic/index.html:18 -msgid "" -"Deploy and scale your containerized applications with immutable " -"infrastructure." -msgstr "" - -#: data/content/atomic/index.html:24 -msgid "Download or Launch in Public Cloud" -msgstr "" - -#: data/content/atomic/index.html:39 -msgid "" -"“We chose to use Fedora Atomic as the base for our Navops Launch — " -"Kubernetes cluster provisioning solution because our customers trust and " -"already run Red Hat operating systems. We love the immutable aspect of " -"Fedora Atomic which is perfect for containerized environments.”" -msgstr "" - -#: data/content/atomic/index.html:40 -msgid "Chief Architect, Navops by Univa" -msgstr "" - -#: data/content/atomic/index.html:52 -msgid "Atomic Host" -msgstr "" - -#: data/content/atomic/index.html:53 -msgid "" -"Atomic Host from Project Atomic is a lightweight, immutable platform, " -"designed with the sole purpose of running containerized applications." -msgstr "" - -#: data/content/atomic/index.html:54 -msgid "" -"Fedora's version of Atomic Host uses the same package repositories as Fedora" -" Server, and provides the latest versions of the Atomic." -msgstr "" - -#: data/content/atomic/index.html:65 -msgid "OStree Updates" -msgstr "" - -#: data/content/atomic/index.html:66 -msgid "" -"Atomically update your system from the latest upstream OStree. Make your " -"servers identical, and easily roll back if there's an upgrade problem." -msgstr "" - -#: data/content/atomic/index.html:71 -msgid "Atomic CLI" -msgstr "" - -#: data/content/atomic/index.html:72 -msgid "" -"Manage Docker containers, system containers, Atomic Apps, and more using one" -" convenient command-line tool." -msgstr "" - -#: data/content/atomic/index.html:83 -msgid "Optimized for Kubernetes and OpenShift" -msgstr "" - -#: data/content/atomic/index.html:84 -msgid "" -"Building a Kubernetes or Origin cluster to run your containerized " -"applications? Run it on Fedora Atomic, which provides you the platform you " -"need on a smaller, leaner OS." -msgstr "" - -#: data/content/atomic/index.html:125 data/content/atomic/index.html:130 -msgid "Ready to give Fedora Atomic a try?" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:8 -msgid "Download Fedora Cloud" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:37 -#: data/content/server/download/server-download-splash.html:31 -#: data/content/workstation/download/ws-download-splash.html:37 -msgid "Thanks for Downloading Fedora!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:38 -#: data/content/server/download/server-download-splash.html:32 -#: data/content/workstation/download/ws-download-splash.html:38 -msgid "" -"Your download should begin in a few seconds. If not, click the link below:" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:48 -#: data/content/server/download/server-download-splash.html:43 -#: data/content/workstation/download/ws-download-splash.html:48 -msgid "Verify your Download!" -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:49 -#: data/content/atomic/prerelease/index.html:323 -#: data/content/server/download/server-download-splash.html:44 -#: data/content/workstation/download/ws-download-splash.html:49 -#: data/content/workstation/prerelease/index.html:122 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the proper CHECKSUM file into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/atomic/download/download-cloud-splash.html:52 -#: data/content/atomic/prerelease/index.html:326 -#: data/content/server/download/server-download-splash.html:47 -#: data/content/server/prerelease/index.html:46 -#: data/content/workstation/download/ws-download-splash.html:52 -msgid "Validate!" -msgstr "" - -#: data/content/atomic/download/index.html:10 -#: data/content/atomic/prerelease/index.html:10 -msgid "Download Fedora Atomic" -msgstr "" - -#: data/content/atomic/download/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s Atomic Host" -msgstr "" - -#: data/content/atomic/download/index.html:35 -#: data/content/atomic/prerelease/index.html:35 -msgid "Atomic Host is built every 2 weeks or so." -msgstr "" - -#: data/content/atomic/download/index.html:36 -#: data/content/atomic/prerelease/index.html:36 -#, python-format -msgid "" -"The latest two week build did not meet our testing criteria. The images " -"available are from over %(atomic_age)s days ago. Check the Project Atomic " -"blog for updates and information about Atomic blocker bugs." -msgstr "" - -#: data/content/atomic/download/index.html:37 -#, python-format -msgid "" -"These are the latest official Fedora Atomic Host images, produced " -"%(atomic_age)s days ago." -msgstr "" - -#: data/content/atomic/download/index.html:48 -msgid "Atomic Host Images" -msgstr "" - -#: data/content/atomic/download/index.html:49 -msgid "" -"Fedora Atomic Host is a leading edge base operating system following the " -"Project Atomic model. It is designed around Kubernetes and containers. The " -"images published here showcase that work. Note that the images have passed " -"several levels of automated testing." -msgstr "" - -#: data/content/atomic/download/index.html:51 -msgid "" -"Please test before using new versions in production. If you" -" do discover a problem, the Atomic Host tools make it easy to flip back to " -"an earlier release — and if that happens, please also help us by filing bugs" -" or submitting fixes." -msgstr "" - -#: data/content/atomic/download/index.html:52 -msgid "" -"Fedora Atomic Host images are updated roughly every two " -"weeks, rather than on the main six-month Fedora cadence. Because " -"development is moving quickly, only the latest major Fedora release is " -"supported." -msgstr "" - -#: data/content/atomic/download/index.html:53 -#, python-format -msgid "" -"Note that different Fedora Atomic Host media are subject to " -"different levels of automatic testing. You can learn more about the" -" Atomic project at projectatomic.io. Click" -" here to see the current test status." -msgstr "" - -#: data/content/atomic/download/index.html:61 -#: data/content/atomic/prerelease/index.html:57 -msgid "Atomic Host Images for Amazon Public Cloud EC2" -msgstr "" - -#: data/content/atomic/download/index.html:62 -#: data/content/atomic/prerelease/index.html:58 -msgid "" -"The links below will provide you listings of available Atomic Host Hardware " -"Virtual Machine (HVM) AMIs by region with buttons to launch them in your " -"Amazon Web Services account. AMI IDs for usage with the AWS Console or " -"command-line tools are also provided." -msgstr "" - -#: data/content/atomic/download/index.html:68 -#: data/content/atomic/download/index.html:136 -#: data/content/atomic/prerelease/index.html:64 -#: data/content/atomic/prerelease/index.html:132 -msgid "GP2 Format" -msgstr "" - -#: data/content/atomic/download/index.html:69 -#: data/content/atomic/download/index.html:137 -#: data/content/atomic/prerelease/index.html:65 -#: data/content/atomic/prerelease/index.html:133 -msgid "" -"GP2 format AMIs use faster SSD storage; use these AMIs for speed, although " -"note your storage costs will be more than standard." -msgstr "" - -#: data/content/atomic/download/index.html:71 -#: data/content/atomic/download/index.html:147 -#: data/content/atomic/prerelease/index.html:67 -#: data/content/atomic/prerelease/index.html:143 -msgid "GP2 HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:76 -#: data/content/atomic/download/index.html:108 -#: data/content/atomic/download/index.html:152 -#: data/content/atomic/download/index.html:182 -#: data/content/atomic/prerelease/index.html:72 -#: data/content/atomic/prerelease/index.html:104 -#: data/content/atomic/prerelease/index.html:148 -#: data/content/atomic/prerelease/index.html:178 -#: data/templates/keys/key-button-and-modal-obsolete.html:37 -#: data/templates/keys/key-button-and-modal-obsolete.html:88 -#: data/templates/keys/key-button-and-modal.html:37 -#: data/templates/keys/key-button-and-modal.html:88 -msgid "Close" -msgstr "" - -#: data/content/atomic/download/index.html:77 -#: data/content/atomic/download/index.html:153 -#, python-format -msgid "Fedora %(rel)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:82 -#: data/content/atomic/download/index.html:114 -#: data/content/atomic/download/index.html:158 -#: data/content/atomic/download/index.html:188 -#: data/content/atomic/prerelease/index.html:78 -#: data/content/atomic/prerelease/index.html:110 -#: data/content/atomic/prerelease/index.html:154 -#: data/content/atomic/prerelease/index.html:184 -#: data/templates/cloud-tab.html:13 -msgid "Region" -msgstr "" - -#: data/content/atomic/download/index.html:83 -#: data/content/atomic/download/index.html:115 -#: data/content/atomic/download/index.html:159 -#: data/content/atomic/download/index.html:189 -#: data/content/atomic/prerelease/index.html:79 -#: data/content/atomic/prerelease/index.html:111 -#: data/content/atomic/prerelease/index.html:155 -#: data/content/atomic/prerelease/index.html:185 -#: data/templates/cloud-tab.html:16 -msgid "AMI ID" -msgstr "" - -#: data/content/atomic/download/index.html:84 -#: data/content/atomic/download/index.html:116 -#: data/content/atomic/download/index.html:160 -#: data/content/atomic/download/index.html:190 -#: data/content/atomic/prerelease/index.html:80 -#: data/content/atomic/prerelease/index.html:112 -#: data/content/atomic/prerelease/index.html:156 -#: data/content/atomic/prerelease/index.html:186 -#: data/templates/cloud-tab.html:17 -msgid "Launch" -msgstr "" - -#: data/content/atomic/download/index.html:100 -#: data/content/atomic/prerelease/index.html:96 -msgid "Standard Format)" -msgstr "" - -#: data/content/atomic/download/index.html:101 -#: data/content/atomic/download/index.html:141 -#: data/content/atomic/prerelease/index.html:97 -#: data/content/atomic/prerelease/index.html:137 -msgid "" -"Standard format AMIs are more suitable if you have infrequently accessed " -"data and want to keep storage cost low." -msgstr "" - -#: data/content/atomic/download/index.html:103 -#: data/content/atomic/download/index.html:177 -#: data/content/atomic/prerelease/index.html:99 -#: data/content/atomic/prerelease/index.html:173 -msgid "Standard HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:109 -#: data/content/atomic/download/index.html:183 -#, python-format -msgid "Fedora %(rel)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/download/index.html:140 -#: data/content/atomic/prerelease/index.html:136 -msgid "Standard Format" -msgstr "" - -#: data/content/atomic/download/index.html:211 -#: data/content/atomic/prerelease/index.html:207 -msgid "Atomic Host Images for Vagrant" -msgstr "" - -#: data/content/atomic/download/index.html:212 -#: data/content/atomic/prerelease/index.html:208 -#, fuzzy, python-format -msgid "" -"Vagrant Boxes for Fedora Atomic Host are available for the VirtualBox and " -"Libvirt providers. You can bring up Fedora Atomic Host in a vagrant box by " -"downloading the images from Fedora or using the vagrant tools to pull the " -"images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:213 -#: data/content/atomic/prerelease/index.html:209 -msgid "View Vagrant Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:216 -#: data/content/atomic/prerelease/index.html:212 -msgid "Vagrant Image Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:217 -#: data/content/atomic/prerelease/index.html:213 -#, python-format -msgid "" -"These images are Vagrant Boxes images for deployment using Vagrant." -msgstr "" - -#: data/content/atomic/download/index.html:222 -#: data/content/atomic/download/index.html:238 -#: data/content/atomic/prerelease/index.html:218 -#: data/content/atomic/prerelease/index.html:234 -msgid "VirtualBox Image" -msgstr "" - -#: data/content/atomic/download/index.html:223 -#: data/content/atomic/download/index.html:239 -#: data/content/atomic/prerelease/index.html:219 -#: data/content/atomic/prerelease/index.html:235 -msgid "" -"If you're using Vagrant on Mac OS X or Windows, this is likely the image " -"you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:224 -#: data/content/atomic/download/index.html:230 -#: data/content/atomic/download/index.html:248 -#: data/content/atomic/download/index.html:252 -#: data/content/atomic/download/index.html:293 -#: data/content/atomic/download/index.html:299 -#: data/content/atomic/download/index.html:316 -#: data/content/atomic/download/index.html:320 -#: data/content/atomic/prerelease/index.html:220 -#: data/content/atomic/prerelease/index.html:226 -#: data/content/atomic/prerelease/index.html:244 -#: data/content/atomic/prerelease/index.html:248 -#: data/content/atomic/prerelease/index.html:289 -#: data/content/atomic/prerelease/index.html:295 -#: data/content/atomic/prerelease/index.html:312 -#: data/content/atomic/prerelease/index.html:316 -#: data/content/server/download/index.html:33 -#: data/content/server/prerelease/index.html:18 -#: data/content/workstation/download/index.html:40 -#: data/content/workstation/download/index.html:44 -#: data/content/workstation/download/index.html:49 -#: data/content/workstation/download/index.html:101 -#: data/content/workstation/download/index.html:113 -#: data/content/workstation/download/index.html:128 -#: data/content/workstation/prerelease/index.html:19 -#: data/content/workstation/prerelease/index.html:23 -#: data/content/workstation/prerelease/index.html:28 -#: data/content/workstation/prerelease/index.html:92 -#: data/content/workstation/prerelease/index.html:101 -#: data/content/workstation/prerelease/index.html:113 -#: data/templates/footer.html:37 -msgid "Download" -msgstr "" - -#: data/content/atomic/download/index.html:225 -#: data/content/atomic/download/index.html:249 -#: data/content/atomic/prerelease/index.html:221 -#: data/content/atomic/prerelease/index.html:245 -#, python-format -msgid "64-bit %sMB VirtualBox Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:228 -#: data/content/atomic/download/index.html:242 -#: data/content/atomic/prerelease/index.html:224 -#: data/content/atomic/prerelease/index.html:238 -msgid "libvirt/KVM Image" -msgstr "" - -#: data/content/atomic/download/index.html:229 -#: data/content/atomic/download/index.html:243 -#: data/content/atomic/prerelease/index.html:225 -#: data/content/atomic/prerelease/index.html:239 -msgid "" -"If you're using Vagrant on Fedora, this is the image you'll want to use." -msgstr "" - -#: data/content/atomic/download/index.html:231 -#: data/content/atomic/download/index.html:253 -#: data/content/atomic/prerelease/index.html:227 -#: data/content/atomic/prerelease/index.html:249 -#, python-format -msgid "64-bit %sMB libvirt/KVM Base Vagrant Image" -msgstr "" - -#: data/content/atomic/download/index.html:261 -#: data/content/atomic/prerelease/index.html:257 -msgid "View Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:265 -#: data/content/atomic/prerelease/index.html:261 -msgid "Vagrant Downloads using Vagrant tools" -msgstr "" - -#: data/content/atomic/download/index.html:266 -#: data/content/atomic/prerelease/index.html:262 -#, python-format -msgid "" -"You can use the following command to grab the Vagrant Box images from HashiCorp's Atlas." -msgstr "" - -#: data/content/atomic/download/index.html:268 -#: data/content/atomic/prerelease/index.html:264 -#, python-format -msgid "" -"If you've previously run Fedora %(rel)s Atomic Host in Vagrant on your " -"machine then you can get the latest version by running:" -msgstr "" - -#: data/content/atomic/download/index.html:277 -#: data/content/atomic/prerelease/index.html:273 -#, python-format -msgid "" -"For more information about running Vagrant on Fedora Workstation, see our wiki page." -msgstr "" - -#: data/content/atomic/download/index.html:285 -#: data/content/atomic/prerelease/index.html:281 -msgid "Atomic Host Images for Cloud Environments" -msgstr "" - -#: data/content/atomic/download/index.html:291 -#: data/content/atomic/download/index.html:306 -#: data/content/atomic/prerelease/index.html:287 -#: data/content/atomic/prerelease/index.html:302 -msgid "qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:292 -#: data/content/atomic/download/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a Qcow2-formatted image for use " -"with OpenStack." -msgstr "" - -#: data/content/atomic/download/index.html:294 -#: data/content/atomic/download/index.html:317 -#: data/content/atomic/prerelease/index.html:290 -#: data/content/atomic/prerelease/index.html:313 -#, python-format -msgid "64-bit %sMB Qcow2 Image" -msgstr "" - -#: data/content/atomic/download/index.html:297 -#: data/content/atomic/download/index.html:310 -#: data/content/atomic/prerelease/index.html:293 -#: data/content/atomic/prerelease/index.html:306 -msgid "Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:298 -#: data/content/atomic/download/index.html:311 -#, python-format -msgid "" -"This is Fedora %(rel)s Cloud Atomic Host in a compressed raw image format. " -"If you're not sure what to use, try this." -msgstr "" - -#: data/content/atomic/download/index.html:300 -#: data/content/atomic/download/index.html:321 -#: data/content/atomic/prerelease/index.html:296 -#: data/content/atomic/prerelease/index.html:317 -#, python-format -msgid "64-bit %sMB xz-Compressed Raw Image" -msgstr "" - -#: data/content/atomic/download/index.html:331 -#: data/content/atomic/prerelease/index.html:335 -#: data/content/server/download/index.html:53 -#: data/content/server/prerelease/index.html:52 -#: data/content/workstation/download/index.html:145 -#: data/content/workstation/prerelease/index.html:133 -msgid "Other Downloads" -msgstr "" - -#: data/content/atomic/download/index.html:333 -#: data/content/atomic/prerelease/index.html:337 -#, python-format -msgid "Atomic Host ISO image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:334 -#: data/content/atomic/prerelease/index.html:338 -#, python-format -msgid "Docker Image (%sMB)" -msgstr "" - -#: data/content/atomic/download/index.html:342 -#, python-format -msgid "F%(rel)s %(state)s" -msgstr "" - -#: data/content/atomic/download/index.html:343 -#: data/content/server/download/index.html:76 -#: data/content/workstation/download/index.html:161 -#: data/content/workstation/download/index.html:171 -msgid "Try a pre-release" -msgstr "" - -#: data/content/atomic/download/index.html:344 -#: data/content/server/download/index.html:77 -#: data/content/workstation/download/index.html:162 -#: data/content/workstation/download/index.html:172 -msgid "We're working on our next release." -msgstr "" - -#: data/content/atomic/download/index.html:345 -#: data/content/server/download/index.html:78 -#: data/content/workstation/download/index.html:163 -#: data/content/workstation/download/index.html:173 -#, python-format -msgid "Help us get F%(rel)s ready!" -msgstr "" - -#: data/content/atomic/download/index.html:346 -#, python-format -msgid "Download F%(rel)s %(state)s images" -msgstr "" - -#: data/content/atomic/download/index.html:347 -#: data/content/server/download/index.html:80 -#: data/content/workstation/download/index.html:165 -#: data/content/workstation/download/index.html:175 -msgid "How to test pre-releases" -msgstr "" - -#: data/content/atomic/download/index.html:353 -#: data/content/atomic/prerelease/index.html:341 -#: data/content/workstation/download/index.html:180 -#: data/content/workstation/prerelease/index.html:145 -msgid "Resources" -msgstr "" - -#: data/content/atomic/download/index.html:354 -#: data/content/atomic/prerelease/index.html:342 -msgid "" -"Project " -"Atomic: Getting Started" -msgstr "" - -#: data/content/atomic/download/index.html:355 -#: data/content/atomic/prerelease/index.html:343 -msgid "Documentation on getting started using Project Atomic / Atomic Host." -msgstr "" - -#: data/content/atomic/download/index.html:356 -#: data/content/atomic/prerelease/index.html:344 -msgid "" -"Project" -" Atomic: Mailing List" -msgstr "" - -#: data/content/atomic/download/index.html:357 -#: data/content/atomic/prerelease/index.html:345 -#, python-format -msgid "" -"Join the upstream mailing list at atomic@projectatomic.io." -msgstr "" - -#: data/content/atomic/download/index.html:358 -#: data/content/atomic/prerelease/index.html:346 -#, python-format -msgid "Project Atomic: IRC Chat" -msgstr "" - -#: data/content/atomic/download/index.html:359 -#: data/content/atomic/prerelease/index.html:347 -msgid "" -"Join the Project Atomic channel #atomic on " -"irc.freenode.org." -msgstr "" - -#: data/content/atomic/download/index.html:362 -#: data/content/atomic/prerelease/index.html:350 -#: data/content/server/download/index.html:98 -#: data/content/workstation/download/index.html:209 -msgid "Verify" -msgstr "" - -#: data/content/atomic/download/index.html:365 -#: data/content/atomic/prerelease/index.html:322 -#: data/content/atomic/prerelease/index.html:353 -#: data/content/server/download/index.html:101 -#: data/content/server/prerelease/index.html:42 -#: data/content/workstation/download/index.html:212 -#: data/content/workstation/prerelease/index.html:121 -msgid "Verify your Image" -msgstr "" - -#: data/content/atomic/prerelease/index.html:34 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Atomic Host" -msgstr "" - -#: data/content/atomic/prerelease/index.html:37 -#, python-format -msgid "" -"These are the latest Fedora Atomic Host images, produced on " -"%(manual_pre_atomic_date)s." -msgstr "" - -#: data/content/atomic/prerelease/index.html:48 -#, python-format -msgid "" -"This is pre-release software and is supported by the Atomic Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/atomic/prerelease/index.html:49 -#: data/content/server/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:46 -#, python-format -msgid "" -"All issues or bugs should be reported via the Red Hat " -"Bugzilla. The Fedora Project makes no guarantees as to its suitability " -"or usefulness." -msgstr "" - -#: data/content/atomic/prerelease/index.html:73 -#: data/content/atomic/prerelease/index.html:149 -#, python-format -msgid "Fedora %(rel)s %(state)s GP2 Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:105 -#: data/content/atomic/prerelease/index.html:179 -#, python-format -msgid "Fedora %(rel)s %(state)s Standard Atomic Host HVM AMIs" -msgstr "" - -#: data/content/atomic/prerelease/index.html:288 -#: data/content/atomic/prerelease/index.html:303 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a Qcow2-formatted " -"image for use with OpenStack." -msgstr "" - -#: data/content/atomic/prerelease/index.html:294 -#: data/content/atomic/prerelease/index.html:307 -#, python-format -msgid "" -"This is Fedora %(rel)s %(state)s Cloud Atomic Host in a compressed raw image" -" format. If you're not sure what to use, try this." -msgstr "" - -#: data/content/e/404.html:7 -msgid "Fedora Project - Page Not Found" -msgstr "" - -#: data/content/e/404.html:16 -msgid "404: Page Not Found" -msgstr "" - -#: data/content/e/404.html:18 -msgid "We apologize, but the file or page you requested could not be found." -msgstr "" - -#: data/content/e/404.html:25 -msgid "Troubleshooting Ideas" -msgstr "" - -#: data/content/e/404.html:29 -msgid "" -"Double-check the URL if you entered it manually. Did you copy it correctly?" -msgstr "" - -#: data/content/e/404.html:32 -#, python-format -msgid "" -"Bad Link? Contact the webmaster and explain which link " -"brought you here." -msgstr "" - -#: data/content/e/404.html:35 -#, python-format -msgid "" -"The page or file may have moved. Check the main site" -" or search our wiki." -msgstr "" - -#: data/content/keys/index.html:8 data/content/keys/index.html:19 -msgid "Package Signing Keys" -msgstr "" - -#: data/content/keys/index.html:21 -msgid "" -"This page lists the public GPG keys used for signing packages in Fedora." -msgstr "" - -#: data/content/keys/index.html:30 data/content/keys/obsolete.html:30 -msgid "Learn how Fedora protects you." -msgstr "" - -#: data/content/keys/index.html:31 data/content/keys/obsolete.html:31 -msgid "" -"Fedora makes use of GPG package signing to ensure that package integrity has" -" not been compromised." -msgstr "" - -#: data/content/keys/index.html:32 data/content/keys/obsolete.html:32 -msgid "Read the FAQ to learn more »" -msgstr "" - -#: data/content/keys/index.html:39 -msgid "Currently Used Keys" -msgstr "" - -#: data/content/keys/index.html:46 data/content/keys/index.html:59 -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/index.html:116 data/content/keys/index.html:129 -#: data/content/keys/obsolete.html:72 data/content/keys/obsolete.html:85 -#: data/content/keys/obsolete.html:100 data/content/keys/obsolete.html:113 -#: data/content/keys/obsolete.html:126 data/content/keys/obsolete.html:139 -#: data/content/keys/obsolete.html:154 data/content/keys/obsolete.html:167 -#: data/content/keys/obsolete.html:188 data/content/keys/obsolete.html:201 -#: data/content/keys/obsolete.html:225 data/content/keys/obsolete.html:247 -#: data/content/keys/obsolete.html:269 data/content/keys/obsolete.html:292 -#: data/content/keys/obsolete.html:316 data/content/keys/obsolete.html:337 -#: data/content/keys/obsolete.html:358 data/content/keys/obsolete.html:379 -#: data/content/keys/obsolete.html:401 -msgid "Primary" -msgstr "" - -#: data/content/keys/index.html:72 data/content/keys/index.html:93 -#: data/content/keys/obsolete.html:201 data/content/keys/obsolete.html:225 -#: data/content/keys/obsolete.html:247 data/content/keys/obsolete.html:269 -#: data/content/keys/obsolete.html:292 data/content/keys/obsolete.html:316 -#: data/content/keys/obsolete.html:337 data/content/keys/obsolete.html:358 -#: data/content/keys/obsolete.html:379 -msgid "Secondary" -msgstr "" - -#: data/content/keys/index.html:116 -msgid "EPEL 7" -msgstr "" - -#: data/content/keys/index.html:129 -msgid "EPEL 6" -msgstr "" - -#: data/content/keys/index.html:145 -#, python-format -msgid "Looking for obsolete keys?" -msgstr "" - -#: data/content/keys/obsolete.html:8 data/content/keys/obsolete.html:19 -msgid "Obsolete Package Signing Keys" -msgstr "" - -#: data/content/keys/obsolete.html:21 -msgid "" -"This page lists the public GPG keys not used anymore for signing packages in" -" Fedora." -msgstr "" - -#: data/content/keys/obsolete.html:39 -msgid "Obsolete and Unused Keys" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora <= 9" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "Fedora GPG key" -msgstr "" - -#: data/content/keys/obsolete.html:46 -msgid "" -"Packages on installation media are signed with this key. The relevant dnf " -"repositories are fedora, fedora-updates " -"for Fedora 7-9, and core and core-updates " -"for Fedora Core (Version 6 and earlier). See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora >= 7 testing" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "Fedora Test" -msgstr "" - -#: data/content/keys/obsolete.html:59 -msgid "" -"If you participate in testing of the packages, this is the key you will use " -"to verify the testing packages. This key signs the packages that are in " -"fedora-testing repository. See http://www.redhat.com/archives/fedora-" -"announce-list/2008-August/msg00012.html for information on why this key " -"is obsolete." -msgstr "" - -#: data/content/keys/obsolete.html:72 -msgid "Fedora 8-9" -msgstr "" - -#: data/content/keys/obsolete.html:85 -msgid "Fedora 8-9 testing" -msgstr "" - -#: data/content/keys/obsolete.html:100 -msgid "Fedora 10" -msgstr "" - -#: data/content/keys/obsolete.html:113 -msgid "Fedora 10 testing" -msgstr "" - -#: data/content/keys/obsolete.html:126 -msgid "Fedora 11" -msgstr "" - -#: data/content/keys/obsolete.html:139 -msgid "Fedora 12" -msgstr "" - -#: data/content/keys/obsolete.html:154 -msgid "Fedora 13" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "Fedora 14" -msgstr "" - -#: data/content/keys/obsolete.html:167 -msgid "s390x" -msgstr "" - -#: data/content/keys/obsolete.html:188 -msgid "Fedora 15" -msgstr "" - -#: data/content/keys/obsolete.html:201 -msgid "Fedora 16" -msgstr "" - -#: data/content/keys/obsolete.html:225 -msgid "Fedora 17" -msgstr "" - -#: data/content/keys/obsolete.html:247 -msgid "Fedora 18" -msgstr "" - -#: data/content/keys/obsolete.html:269 -msgid "Fedora 19" -msgstr "" - -#: data/content/keys/obsolete.html:292 -msgid "Fedora 20" -msgstr "" - -#: data/content/keys/obsolete.html:316 -msgid "Fedora 21" -msgstr "" - -#: data/content/keys/obsolete.html:337 -msgid "Fedora 22" -msgstr "" - -#: data/content/keys/obsolete.html:358 -msgid "Fedora 23" -msgstr "" - -#: data/content/keys/obsolete.html:379 -msgid "Fedora 24" -msgstr "" - -#: data/content/keys/obsolete.html:401 -msgid "EPEL 5" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "EPEL 4" -msgstr "" - -#: data/content/keys/obsolete.html:414 -msgid "RPM-GPG-KEY-EPEL" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "Fedora Extras" -msgstr "" - -#: data/content/keys/obsolete.html:427 -msgid "" -"If you are using Fedora Extras with Fedora Core 6, use this package from " -"extras repository. This key will no longer be used after " -"Fedora Core 6 and Extras reach EOL (December 7th 2007). This key is not " -"included in the fedora-release package in Fedora 7 and " -"later releases." -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "Legacy" -msgstr "" - -#: data/content/keys/obsolete.html:444 -msgid "" -"This key was used for packages that were released by Fedora Legacy project " -"to update releases that reached their official EOL. The Fedora Legacy " -"project no longer exists, so this key will no longer be used to sign " -"packages. This key is not included in the fedora-release " -"package in Fedora 7 and later releases." -msgstr "" - -#: data/content/keys/faq/index.html:8 data/content/keys/faq/index.html:18 -msgid "Package Signing FAQ" -msgstr "" - -#: data/content/keys/faq/index.html:20 -msgid "" -"Learn how Fedora makes use of GPG to sign packages to ensure your safety." -msgstr "" - -#: data/content/keys/faq/index.html:31 -msgid "How does Fedora Project use GPG keys to sign packages?" -msgstr "" - -#: data/content/keys/faq/index.html:32 -msgid "" -"Each stable RPM package that is published by Fedora Project is signed with a" -" GPG signature. By default, dnf and the graphical update tools will verify " -"these signatures and refuse to install any packages that are not signed or " -"have bad signatures. You should always verify the signature of a package " -"before you install it. These signatures ensure that the packages you " -"install are what was produced by the Fedora Project and have not been " -"altered (accidentally or maliciously) by any mirror or website that is " -"providing the packages." -msgstr "" - -#: data/content/keys/faq/index.html:33 -msgid "" -"Packages that can be downloaded from Koji build system do not contain " -"signatures, so you should use them with caution. Similarly, bleeding-edge " -"packages in Rawhide are not necessarily signed." -msgstr "" - -#: data/content/keys/faq/index.html:41 -msgid "Importing keys" -msgstr "" - -#: data/content/keys/faq/index.html:42 -#, python-format -msgid "" -"The keys are included in the fedora-release package, you " -"can find them in the /etc/pki/rpm-gpg directory. Please " -"note that not all keys in this directory are used by Fedora project -- some " -"are used for signing Red Hat Enterprise Linux packages or are no longer used" -" at all. If you use Red Hat Enterprise Linux packages, see https://www.redhat.com/security/team/key. The keys used by " -"Fedora are enabled in the dnf repository configuration, so you generally " -"don't need to manually import them into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:43 -#, python-format -msgid "" -"In addition to the fedora-release package and this web page, you can " -"download the Fedora keys from a public key server, such as keys.gnupg.net." -msgstr "" - -#: data/content/keys/faq/index.html:44 -msgid "" -"For some repositories, such as repositories with stable and testing packages" -" in default configuration, dnf is able to find a proper key" -" for the repository and asks the user for confirmation before importing the " -"key if the key is not already imported into the rpm database." -msgstr "" - -#: data/content/keys/faq/index.html:45 -msgid "" -"You can always import a key into RPM's database by hand using the following " -"command:" -msgstr "" - -#: data/content/keys/faq/index.html:48 -msgid "Refer to rpm manual for more information." -msgstr "" - -#: data/content/keys/faq/index.html:49 -msgid "" -"If you want to verify that the keys installed on your system match the keys " -"listed here, you can use GnuPG to check that the fingerprint of the key " -"matches. For example:" -msgstr "" - -#: data/content/server/index.html:8 -msgid "Get Fedora Server: the latest tech for your apps and services" -msgstr "" - -#: data/content/server/index.html:19 -#: data/templates/productselector-server.html:14 -msgid "" -"The latest technology. A stable foundation. Together, for your applications " -"and services." -msgstr "" - -#: data/content/server/index.html:38 -#, python-format -msgid "" -"“The simplicity introduced with rolekit and cockpit have made server " -"deployments a breeze. What took me a few days on other operating systems " -"took less than an hour with Fedora %(rel)s Server. It just works.”" -msgstr "" - -#: data/content/server/index.html:39 -msgid "Systems Engineer" -msgstr "" - -#: data/content/server/index.html:51 -msgid "" -"Fedora Server is a short-lifecycle, community-supported server operating " -"system that enables seasoned system administrators experienced with any OS " -"to make use of the very latest server-based technologies available in the " -"open source community." -msgstr "" - -#: data/content/server/index.html:62 -msgid "Easy Administration" -msgstr "" - -#: data/content/server/index.html:63 -msgid "" -"Manage your system simply with Cockpit's powerful, modern interface. View " -"and monitor system performance and status, and deploy and manage container-" -"based services." -msgstr "" - -#: data/content/server/index.html:77 -msgid "Server Roles" -msgstr "" - -#: data/content/server/index.html:78 -msgid "" -"There's no need to set up your server from scratch when you use server " -"roles. Server roles plug into your Fedora Server system, providing a well-" -"integrated service on top of the Fedora Server platform. Deploy and manage " -"these prepared roles simply using the Rolekit tool." -msgstr "" - -#: data/content/server/index.html:81 -msgid "Database Services" -msgstr "" - -#: data/content/server/index.html:82 -msgid "" -"Fedora Server brings with it an enterprise-class, scalable database server " -"powered by the open-source PostgreSQL project." -msgstr "" - -#: data/content/server/index.html:96 -msgid "Complete Enterprise Domain Solution" -msgstr "" - -#: data/content/server/index.html:97 -msgid "" -"Level up your Linux network with advanced identity management, DNS, " -"certificate services, Windows(TM) domain integration throughout your " -"environment with FreeIPA, the engine that drives Fedora Server's Domain " -"Controller role." -msgstr "" - -#: data/content/server/index.html:110 -msgid "" -"“The Docker Role for Fedora Server was simple and fast to install so that " -"you can run your Docker images. This makes a great testbed for beginners and" -" experts with docker so that they can develop their applications on the " -"fly.”" -msgstr "" - -#: data/content/server/index.html:111 -msgid "Information Systems Student" -msgstr "" - -#: data/content/server/index.html:125 data/content/server/index.html:130 -msgid "Ready to give Fedora Server a try?" -msgstr "" - -#: data/content/server/download/index.html:8 -#: data/content/server/download/server-download-splash.html:8 -msgid "Download Fedora Server" -msgstr "" - -#: data/content/server/download/index.html:32 -#, python-format -msgid "Download Fedora %(rel)s Server" -msgstr "" - -#: data/content/server/download/index.html:34 -#, python-format -msgid "64-bit %sGB installation image" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Are you looking for Fedora 27 Modular Server Beta?" -msgstr "" - -#: data/content/server/download/index.html:41 -msgid "Download it here!" -msgstr "" - -#: data/content/server/download/index.html:45 -msgid "" -"The Fedora Server installation image allows you to make media for your " -"computer that boots to the installer to directly install Fedora Server on to" -" your hard drive" -msgstr "" - -#: data/content/server/download/index.html:46 -msgid "" -"To use this image, you need a drive that can create or \"burn\" DVDs, or a " -"USB flash drive at least as big as the image." -msgstr "" - -#: data/content/server/download/index.html:55 -#: data/content/server/prerelease/index.html:54 -msgid "Netinstall Image:" -msgstr "" - -#: data/content/server/download/index.html:57 -#: data/content/server/prerelease/index.html:56 -#: data/content/workstation/download/index.html:152 -#: data/content/workstation/prerelease/index.html:140 -#, python-format -msgid "64-bit %sMB image" -msgstr "" - -#: data/content/server/download/index.html:75 -#: data/content/workstation/download/index.html:170 -#, python-format -msgid "F%(rel)s Beta" -msgstr "" - -#: data/content/server/download/index.html:79 -#: data/content/workstation/download/index.html:174 -#, python-format -msgid "Download F%(rel)s Beta images" -msgstr "" - -#: data/content/server/download/index.html:87 -#: data/content/workstation/download/index.html:194 -msgid "Get more Fedora" -msgstr "" - -#: data/content/server/download/index.html:91 -#: data/content/workstation/download/index.html:203 -msgid "ARM® Technology" -msgstr "" - -#: data/content/server/download/server-download-splash.html:50 -#: data/content/workstation/download/ws-download-splash.html:55 -msgid "How do I turn the Live image into bootable media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:51 -#: data/content/workstation/download/ws-download-splash.html:56 -#, python-format -msgid "" -"After you download the image, you will make bootable media from it. Either " -"burn the image to a blank DVD disc, or write the image to a USB flash drive." -msgstr "" - -#: data/content/server/download/server-download-splash.html:52 -#: data/content/workstation/download/ws-download-splash.html:57 -msgid "How do I boot from the media?" -msgstr "" - -#: data/content/server/download/server-download-splash.html:53 -#: data/content/workstation/download/ws-download-splash.html:58 -#, python-format -msgid "" -"Consult your computer system's documentation for the procedure to boot from " -"media other than the built-in hard disk. The process may differ based on the" -" manufacturer and model of your computer. You may find these " -"common tips useful." -msgstr "" - -#: data/content/server/prerelease/index.html:8 -#, python-format -msgid "Download Fedora %s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Modular Server" -msgstr "" - -#: data/content/server/prerelease/index.html:19 -#, python-format -msgid "64-bit %sGB Installation Image" -msgstr "" - -#: data/content/server/prerelease/index.html:28 -#, python-format -msgid "" -"This is pre-release software and is supported by the Server Working Group. Please direct questions to " -"their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/server/prerelease/index.html:31 -#: data/content/server/prerelease/index.html:33 -#: data/content/workstation/prerelease/index.html:48 -#: data/content/workstation/prerelease/index.html:50 -#, python-format -msgid "" -"Read the Release Notes for more information" -" on changes and new features, and the Common " -"Bugs page for information on commonly-encountered bugs and how to avoid " -"them." -msgstr "" - -#: data/content/server/prerelease/index.html:43 -#, python-format -msgid "" -"Once you have downloaded an image, verify it for security and integrity. To " -"verify your image, start by downloading the CHECKSUM file below into the " -"same directory as the image you downloaded and follow these instructions." -msgstr "" - -#: data/content/workstation/index.html:8 -msgid "Get Fedora Workstation: the best desktop OS for software developers" -msgstr "" - -#: data/content/workstation/index.html:19 -#: data/templates/productselector-workstation.html:13 -msgid "This is the Linux workstation you've been waiting for." -msgstr "" - -#: data/content/workstation/index.html:31 -msgid "" -"Fedora Workstation is a reliable, user-friendly, and powerful operating " -"system for your laptop or desktop computer. It supports a wide range of " -"developers, from hobbyists and students to professionals in corporate " -"environments." -msgstr "" - -#: data/content/workstation/index.html:41 -msgid "" -"“The plethora of tools provided by
Fedora allows me to get the job " -"done.
It just works.”" -msgstr "" - -#: data/content/workstation/index.html:42 -msgid "JVM performance engineer" -msgstr "" - -#: data/content/workstation/index.html:53 -msgid "Sleek user interface" -msgstr "" - -#: data/content/workstation/index.html:54 -msgid "" -"Focus on your code in the GNOME 3 desktop environment. GNOME is built with " -"developer feedback and minimizes distractions, so you can concentrate on " -"what's important." -msgstr "" - -#: data/content/workstation/index.html:72 -msgid "Complete open source toolbox" -msgstr "" - -#: data/content/workstation/index.html:73 -msgid "" -"Skip the drag of trying to find or build the tools you need. With Fedora's " -"complete set of open source languages, tools, and utilities, everything is a" -" click or command line away. There's even project hosting and repositories " -"like COPR to make your code and builds available quickly to the community." -msgstr "" - -#: data/content/workstation/index.html:86 -msgid "GNOME Boxes & other virt tools" -msgstr "" - -#: data/content/workstation/index.html:87 -msgid "" -"Get virtual machines up and running quickly to test your code on multiple " -"platforms using GNOME Boxes. Or dig into powerful, scriptable virtualization" -" tools for even more control." -msgstr "" - -#: data/content/workstation/index.html:104 -msgid "Built-in Docker support" -msgstr "" - -#: data/content/workstation/index.html:105 -msgid "" -"Containerize your own apps, or deploy containerized apps out of the box on " -"Fedora, using the latest technology like Docker." -msgstr "" - -#: data/content/workstation/index.html:185 -#: data/content/workstation/index.html:190 -msgid "Ready to give Fedora Workstation a try?" -msgstr "" - -#: data/content/workstation/download/index.html:8 -#: data/content/workstation/download/ws-download-splash.html:8 -msgid "Download Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:38 -#, python-format -msgid "Download Fedora %(rel)s Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:41 -#: data/content/workstation/download/index.html:98 -#: data/content/workstation/prerelease/index.html:20 -#: data/content/workstation/prerelease/index.html:89 -#, python-format -msgid "%s MB Fedora Media Writer for Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:45 -#: data/content/workstation/download/index.html:126 -#: data/content/workstation/prerelease/index.html:24 -#: data/content/workstation/prerelease/index.html:111 -#, python-format -msgid "64-bit %s GB ISO for Linux." -msgstr "" - -#: data/content/workstation/download/index.html:46 -#: data/content/workstation/prerelease/index.html:25 -#, python-format -msgid "Install via DNF if you are already on Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:50 -#: data/content/workstation/download/index.html:110 -#: data/content/workstation/prerelease/index.html:29 -#: data/content/workstation/prerelease/index.html:98 -#, python-format -msgid "%s MB Fedora Media Writer for Windows" -msgstr "" - -#: data/content/workstation/download/index.html:52 -#: data/content/workstation/download/index.html:57 -#: data/content/workstation/prerelease/index.html:31 -#: data/content/workstation/prerelease/index.html:36 -msgid "Download Fedora Media Writer for your operating system." -msgstr "" - -#: data/content/workstation/download/index.html:53 -#: data/content/workstation/prerelease/index.html:32 -msgid "Need instructions? Or a different version?" -msgstr "" - -#: data/content/workstation/download/index.html:65 -msgid "Running Fedora Workstation" -msgstr "" - -#: data/content/workstation/download/index.html:66 -msgid "To run Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/download/index.html:68 -msgid "Fedora Media Writer (download above)" -msgstr "" - -#: data/content/workstation/download/index.html:69 -#: data/content/workstation/prerelease/index.html:66 -#, python-format -msgid "A USB Flash drive with at least %s GB space available" -msgstr "" - -#: data/content/workstation/download/index.html:71 -msgid "" -"Fedora Workstation is provided via Fedora Media Writer. Download this " -"program via the download link above and run it on your system, following the" -" prompts to generate a live version (see 'What does \"Live\" mean?' to the " -"right) of Fedora Workstation on a USB flash drive. You may then run the live" -" version of Fedora Workstation from your USB flash drive." -msgstr "" - -#: data/content/workstation/download/index.html:72 -#: data/content/workstation/prerelease/index.html:80 -msgid "" -"Optionally, you may install Fedora Workstation to a laptop or desktop " -"computer that has at least 1 GHz processor, 1 GB RAM, and 10 GB space " -"available. To do this, run the live version of Fedora Workstation from your " -"USB flash drive on the computer you'd like to install to, run the Fedora " -"Media Writer application, and follow the on-screen prompts to complete " -"installation." -msgstr "" - -#: data/content/workstation/download/index.html:74 -#: data/content/workstation/prerelease/index.html:82 -msgid "Supported Platforms" -msgstr "" - -#: data/content/workstation/download/index.html:75 -#: data/content/workstation/prerelease/index.html:83 -msgid "Fedora Media Writer supports the following platforms:" -msgstr "" - -#: data/content/workstation/download/index.html:77 -#: data/content/workstation/download/index.html:97 -#: data/content/workstation/prerelease/index.html:88 -msgid "Mac OS X" -msgstr "" - -#: data/content/workstation/download/index.html:78 -#: data/content/workstation/download/index.html:109 -#: data/content/workstation/prerelease/index.html:97 -msgid "Windows" -msgstr "" - -#: data/content/workstation/download/index.html:79 -#: data/content/workstation/download/index.html:121 -#: data/content/workstation/prerelease/index.html:106 -msgid "Linux" -msgstr "" - -#: data/content/workstation/download/index.html:82 -msgid "" -"We have auto-detected that you are running Mac OS X and " -"have offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:85 -msgid "" -"We have auto-detected that you are running Linux and have " -"offered that version for download. If we have detected your operating system" -" incorrectly or you would like to download a different version, please click" -" the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:88 -msgid "" -"We have auto-detected that you are running Windows and have" -" offered that version for download. If we have detected your operating " -"system incorrectly or you would like to download a different version, please" -" click the \"View all platform downloads\" button below." -msgstr "" - -#: data/content/workstation/download/index.html:92 -msgid "View all platform downloads" -msgstr "" - -#: data/content/workstation/download/index.html:122 -#: data/content/workstation/prerelease/index.html:107 -msgid "Available via DNF for Fedora" -msgstr "" - -#: data/content/workstation/download/index.html:123 -#: data/content/workstation/prerelease/index.html:108 -msgid "More details" -msgstr "" - -#: data/content/workstation/download/index.html:127 -#: data/content/workstation/prerelease/index.html:112 -msgid "How to use this ISO?" -msgstr "" - -#: data/content/workstation/download/index.html:129 -#: data/content/workstation/prerelease/index.html:114 -msgid "Verify this image" -msgstr "" - -#: data/content/workstation/download/index.html:146 -#: data/content/workstation/prerelease/index.html:134 -#, python-format -msgid "64-bit %sGB Live image" -msgstr "" - -#: data/content/workstation/download/index.html:150 -#: data/content/workstation/prerelease/index.html:138 -msgid "Netinstall Images:" -msgstr "" - -#: data/content/workstation/download/index.html:153 -#, python-format -msgid "32-bit %sMB image" -msgstr "" - -#: data/content/workstation/download/index.html:160 -#, python-format -msgid "F%(rel)s Alpha" -msgstr "" - -#: data/content/workstation/download/index.html:164 -#, python-format -msgid "Download F%(rel)s Alpha images" -msgstr "" - -#: data/content/workstation/download/index.html:181 -#, python-format -msgid "Release Announcement" -msgstr "" - -#: data/content/workstation/download/index.html:182 -msgid "Read the full Release Announcement on Fedora Magazine." -msgstr "" - -#: data/content/workstation/download/index.html:183 -#, python-format -msgid "Release Notes" -msgstr "" - -#: data/content/workstation/download/index.html:184 -msgid "" -"Learn about changes since the last version of Fedora as well as minimum " -"requirements and recommendations for running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:185 -#, python-format -msgid "Installation Guide" -msgstr "" - -#: data/content/workstation/download/index.html:186 -msgid "" -"We recommend you look through this before installing to your system, since " -"it answers many common questions." -msgstr "" - -#: data/content/workstation/download/index.html:187 -#: data/content/workstation/prerelease/index.html:146 -#, python-format -msgid "Common Bugs" -msgstr "" - -#: data/content/workstation/download/index.html:188 -#: data/content/workstation/prerelease/index.html:147 -msgid "" -"An excellent resource to consult in case you run into any issues installing " -"or running Fedora." -msgstr "" - -#: data/content/workstation/download/index.html:190 -#: data/content/workstation/prerelease/index.html:151 -msgid "What does \"Live\" mean?" -msgstr "" - -#: data/content/workstation/download/index.html:191 -#: data/content/workstation/prerelease/index.html:152 -msgid "" -"Fedora Media Writer will create a complete, running Fedora Workstation you " -"can run right away off of a USB drive. You can use the Live image to test " -"and play with Fedora without making changes to your hard disk." -msgstr "" - -#: data/content/workstation/download/index.html:192 -#: data/content/workstation/prerelease/index.html:153 -msgid "" -"When you are ready, you can install Fedora to your hard disk from within " -"this \"live\" version of Fedora Workstation." -msgstr "" - -#: data/content/workstation/download/index.html:197 -#: data/templates/footer.html:43 -msgid "Fedora Spins" -msgstr "" - -#: data/content/workstation/download/index.html:200 -#: data/templates/footer.html:44 -msgid "Fedora Labs" -msgstr "" - -#: data/content/workstation/prerelease/index.html:8 -#, python-format -msgid "Download Fedora Workstation %s" -msgstr "" - -#: data/content/workstation/prerelease/index.html:17 -#, python-format -msgid "Download Fedora %(rel)s %(state)s Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:45 -#, python-format -msgid "" -"This is pre-release software and is supported by the Workstation Working Group. Please direct questions" -" to their mailing list or %(team_irc)s on " -"freenode." -msgstr "" - -#: data/content/workstation/prerelease/index.html:54 -msgid "" -"Are you looking for 32 bit images of F27 Beta? Due to some technical issues " -"we cannot offer them, but they will be available for the F27 final release " -"date. Stay tuned!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:57 -#, python-format -msgid "When is Fedora %s going to be released?" -msgstr "" - -#: data/content/workstation/prerelease/index.html:58 -msgid "Read all the key milestones of the release schedule..." -msgstr "" - -#: data/content/workstation/prerelease/index.html:62 -msgid "Running Pre-Release Versions of Fedora Workstation" -msgstr "" - -#: data/content/workstation/prerelease/index.html:63 -msgid "To run a prerelease version of Fedora Workstation, you will need:" -msgstr "" - -#: data/content/workstation/prerelease/index.html:65 -msgid "Fedora Media Writer (Download available below)" -msgstr "" - -#: data/content/workstation/prerelease/index.html:67 -#, python-format -msgid "" -"A live image ISO of the pre-release version of Fedora you" -" wish to run" -msgstr "" - -#: data/content/workstation/prerelease/index.html:69 -msgid "" -"WARNING: This procedure destroys all data on your USB media. Make sure to " -"back up any important files from your USB media before you do this." -msgstr "" - -#: data/content/workstation/prerelease/index.html:71 -msgid "Download the Fedora Media Writer app below." -msgstr "" - -#: data/content/workstation/prerelease/index.html:72 -msgid "Download the desired ISO image." -msgstr "" - -#: data/content/workstation/prerelease/index.html:73 -msgid "" -"Open the Fedora Media Writer app. You may need to provide a password to give" -" the app the right permissions." -msgstr "" - -#: data/content/workstation/prerelease/index.html:74 -msgid "Select \"Custom OS...\" from the list." -msgstr "" - -#: data/content/workstation/prerelease/index.html:75 -msgid "On the Custom OS page, select the \"Select Live ISO\" button." -msgstr "" - -#: data/content/workstation/prerelease/index.html:76 -msgid "" -"In the file selection window, locate and select the ISO image you " -"downloaded." -msgstr "" - -#: data/content/workstation/prerelease/index.html:77 -msgid "" -"Insert your USB stick in the computer. If you used your USB stick previously" -" to create live media, you may need to restore it to factory settings. The " -"app will ask you whether to do so in this case." -msgstr "" - -#: data/content/workstation/prerelease/index.html:78 -msgid "" -"Select \"Create Live USB\" to write the image. Wait until the process is " -"finished before you remove the media and close the app." -msgstr "" - -#: data/content/workstation/prerelease/index.html:125 -msgid "Validate 64-bit!" -msgstr "" - -#: data/content/workstation/prerelease/index.html:148 -msgid "" -"How to test pre-releases" -msgstr "" - -#: data/content/workstation/prerelease/index.html:149 -msgid "Fedora wiki guide on how to help test pre-release versions of Fedora." -msgstr "" - -#: data/templates/cloud-tab.html:9 -#, python-format -msgid "Fedora %s " -msgstr "" - -#: data/templates/cloud-tab.html:14 -msgid "Architecture" -msgstr "" - -#: data/templates/cloud-tab.html:15 -msgid "Root store" -msgstr "" - -#: data/templates/cloud-tab.html:29 -msgid "Launch AMI instance" -msgstr "" - -#: data/templates/cloud-tab.html:43 -msgid "Select the nearest region" -msgstr "" - -#: data/templates/cloud-tab.html:49 -msgid "64-bit (x86_64)" -msgstr "" - -#: data/templates/cloud-tab.html:50 -msgid "32-bit (i386)" -msgstr "" - -#: data/templates/cloud-tab.html:54 -msgid "Launch it!" -msgstr "" - -#: data/templates/content-export-regulations.html:9 -msgid "Export Regulations" -msgstr "" - -#: data/templates/content-export-regulations.html:11 -msgid "Read full export regulations" -msgstr "" - -#: data/templates/export-regulations.html:10 -msgid "" -"By clicking on and downloading Fedora, you agree to comply with the " -"following terms and conditions." -msgstr "" - -#: data/templates/export-regulations.html:11 -msgid "Read more >" -msgstr "" - -#: data/templates/footer.html:14 -msgid "About" -msgstr "" - -#: data/templates/footer.html:17 -msgid "About Fedora" -msgstr "" - -#: data/templates/footer.html:18 -msgid "Sponsors" -msgstr "" - -#: data/templates/footer.html:19 -msgid "Fedora Magazine" -msgstr "" - -#: data/templates/footer.html:20 -msgid "Legal" -msgstr "" - -#: data/templates/footer.html:40 -msgid "Get Fedora Workstation" -msgstr "" - -#: data/templates/footer.html:41 -msgid "Get Fedora Server" -msgstr "" - -#: data/templates/footer.html:42 -msgid "Get Fedora Atomic" -msgstr "" - -#: data/templates/footer.html:45 -msgid "Fedora ARM®" -msgstr "" - -#: data/templates/footer.html:46 -msgid "Alternative Downloads" -msgstr "" - -#: data/templates/footer.html:53 -msgid "Support" -msgstr "" - -#: data/templates/footer.html:56 -msgid "Get Help" -msgstr "" - -#: data/templates/footer.html:57 -msgid "Ask Fedora" -msgstr "" - -#: data/templates/footer.html:58 -msgid "Common Bugs" -msgstr "" - -#: data/templates/footer.html:59 -msgid "Fedora Developer Portal" -msgstr "" - -#: data/templates/footer.html:60 -msgid "Installation Guide" -msgstr "" - -#: data/templates/footer.html:66 -msgid "Join" -msgstr "" - -#: data/templates/footer.html:69 -msgid "Join Fedora" -msgstr "" - -#: data/templates/footer.html:70 -msgid "Planet Fedora" -msgstr "" - -#: data/templates/footer.html:71 -msgid "Fedora SIGs" -msgstr "" - -#: data/templates/footer.html:72 -msgid "Fedora Account System" -msgstr "" - -#: data/templates/footer.html:73 -msgid "Fedora Community" -msgstr "" - -#: data/templates/footer.html:87 -msgid "Fedora is sponsored by Red Hat." -msgstr "" - -#: data/templates/footer.html:88 -msgid "Learn more about the relationship between Red Hat and Fedora »" -msgstr "" - -#: data/templates/footer.html:89 -#, python-format -msgid "© %(year)s Red Hat, Inc. and others." -msgstr "" - -#: data/templates/footer.html:89 -msgid "" -"Please send any comments or corrections to the websites team." -msgstr "" - -#: data/templates/footer.html:95 -msgid "Change Language" -msgstr "" - -#: data/templates/footer.html:99 -msgid "OK" -msgstr "" - -#: data/templates/moretofedora.html:12 -msgid "" -"There's more to \"Fedora" -msgstr "" - -#: data/templates/productselector-cloud.html:14 -msgid "Lean. Powerful. Everycloud ready." -msgstr "" - -#: data/templates/generic/docs-links.html:8 -msgid "Documentation and other resources" -msgstr "" - -#: data/templates/generic/docs-links.html:9 -#, python-format -msgid "" -"Before installing Fedora, you may want to confirm your system meets minimum " -"requirements for Fedora. Consult the online release notes" -" to see minimum requirements and recommendations." -msgstr "" - -#: data/templates/generic/docs-links.html:10 -#, python-format -msgid "" -"There is also a complete Installation Guide available. We" -" recommend you look through it before installing to your system, since it " -"answers many common questions." -msgstr "" - -#: data/templates/generic/other-media-sources.html:8 -msgid "Other ways of obtaining media" -msgstr "" - -#: data/templates/generic/other-media-sources.html:9 -#, python-format -msgid "" -"You may purchase installation media for Fedora from online " -"vendors or a local vendor in your area." -msgstr "" - -#: data/templates/generic/other-media-sources.html:10 -#, python-format -msgid "" -"Can't afford the price of installation media? Request Fedora installation " -"media from the Fedora Free Media Program." -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:45 -#: data/templates/keys/key-button-and-modal.html:45 -msgid "GPG Key Information" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:50 -#: data/templates/keys/key-button-and-modal.html:50 -msgid "Key ID" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:54 -#: data/templates/keys/key-button-and-modal.html:54 -msgid "Fingerprint" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:59 -#: data/templates/keys/key-button-and-modal.html:59 -msgid "uid" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:65 -#: data/templates/keys/key-button-and-modal.html:65 -msgid "sub" -msgstr "" - -#: data/templates/keys/key-button-and-modal-obsolete.html:79 -#: data/templates/keys/key-button-and-modal.html:79 -msgid "Get it from:" -msgstr "" diff --git a/getfedora.org/static/030D5AED.txt b/getfedora.org/static/030D5AED.txt deleted file mode 100644 index 0deb3dc..0000000 --- a/getfedora.org/static/030D5AED.txt +++ /dev/null @@ -1,55 +0,0 @@ -pub 4096R/030D5AED 2015-07-27 Fedora Secondary (24) -sub 2048g/9B586F97 2015-07-27 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -mQINBFW1d/ABEACcf5QrE1jVfpoipfa7XTuwle/E5fAf+6QKP26IWI67ReqFlahK -ReDCBBUoY6zbsuy3LAVOyBZcW+EaY8YCjuYVaqbq+uMvnqatcIEYBWeYyGJOqNk/ -8QBqzLpBx7HBQYCsUCn41b4wT6WWm3aHhogJyNBlr/FchthcLAgGc8Vm3aBdLwXv -bH0sJXNFDL8HzmnS+MjM7CwoodQ0trP3mrQGTFq0cA3vffzKnvJXwmk40KRa5fwb -2JhZUaEfUy3BX1+QDFnR9Bauk99+SMFkLL1o/bw12vGNibGvuCQfNE9hVfy2NRTI -v5ZTKzgwdvhMFQHX1rAqLG9M5CzNWonqF0Oi/NDw8UsTqnhMCUQW/9+4z0XvH3K8 -wZktcWh1Um91K3Y8B+pkaYTis5FCVpmkigBDXhvlkkt5Mdz61twy2I6TbjrjF2Pn -9ISclUKsoVY/wNJ+tNSUeLpxu757FKw8xTHYRd6H9jm6vMRuIMzuaC5QUfKdyhlE -TxKiFcDYOVg6L2REyX7Rat8q2dV3Iv66p641KGzkjdIwwEZMtn2jvbIXw+BPihv8 -Hr082PhFHM3OzwZGOQJLj4/pHStYLuhWCNJzQ6YA6mmJXHnoOxH4ZscEiG396JJK -Zk6svAOEqZfG2RzkA1noQC2kLkXwXhPap7dd5Swhujd9g2jCIrAb15diJQARAQAB -tD1GZWRvcmEgU2Vjb25kYXJ5ICgyNCkgPGZlZG9yYS0yNC1zZWNvbmRhcnlAZmVk -b3JhcHJvamVjdC5vcmc+iQI4BBMBAgAiBQJVtXfwAhsPBgsJCAcDAgYVCAIJCgsE -FgIDAQIeAQIXgAAKCRC4Y17rAw1a7aBtD/9yHeymRy9fW6/4Appvm46IlWi8oAT5 -kue7vJ5gWqEqEsMzwdmHs67KWQBBECWn0GF3UOdBuV+eO+kRZ7yMIEB37+L6AiXh -LpaPqucBk42iai+Xxj34Ml6i5CodmFbpTxdne5rJOmBVQdsEVmJZyBESy0ynEfaO -T6U2ZZ+ccaHt2fkKr2/7wdhl6soZ05s16nCEzP0rujQPNx4M/1qX5ipII4wsXIqt -iHzOwl1lyV9p/+Yazzi6kJ4mkp/aSkEEK2AAZ1QNASUbafIQBqXc6mkK3oo4koQ8 -naPYufFmc2urT8486S4mMynXsITfr4qlFDZPpSNgLDGD/DEkNzsbE4K79/V+O9wD -i4ux/Yf7x7L7f8NCxJw9QUKPOnYS8b3DYrBtxS3gM8VCVpLJ2r4DyQJd7agF+g6W -OShqitcrFiTFmC7zbf+m6GhOx8GhI06O2piY7hMYssx6mTBp7qaLf/nwutzovPuT -oCAuhvP77VDrkVX7PsRYyhcvXrbu0esCLKscaVG8eLP5TUqFaf8lW4Gt1FTdm2iO -nnG+Fm0WYF4SPDa1tNLQlQaDKSrhFw6ldR8T5uQ+xOA6UaOY1ILWMu3K+nhMtmk1 -9zpVRn0REQ8bdTRVDrpXs5u6U1lkoTlvsgGDOKouGdktwVjKtYrkvPWpB89RSuv5 -ol9x0YlWDbtwhLkCDQRVtXfwEAgArEt7xr9U/FSKaPt6hZqOMEBQGRfhxs3seQ/P -Qg4H0XMvqbzEvwROSJlVSWwYSXybf6BFC3L9HDyAkdJhRuscrzfMCqdcU/yu/Gia -zca6LgSxOk5LCvdcqhBDUerSSIW6TbAPyQF6VW6yrH2sHoo67LvfQpOKhQvpEtJL -sPfbBt5sepi0awRYywgj8kcpPMMUjWqI3UYlh1Bp2geGzK7pg4euo/pYEy6cGzR0 -yEberdODF84ZOlaHAySbH0Lik+8hyaxehLXAkhfHATmr02P9HGUvyY5QNika4Zam -q6CkZ+BU4rdISvZYfBod0QmvMFCYPu59K+JTIZcB6QCW8YFhzwAFEQf/UONbTirF -Rtu8v7+WGlSdv74wu17ub56rRsZat/KoB9oL+i4qgApmDFm80X3Y40ZHhhZewdI4 -4HPjBx9kVjf38Ot4bf7UsZx31iJjNOu0JGCRy75aEUeOZz5bKDz1e+6SNwxeEnTX -n+eVxz+JKNHsU2xtbiirddL6GcT5D5u8sSIN5zIwiEmKTGEXvIL+R9bzWjn52Svw -iC7bu49i5eRl3wFGQmdEjwLbFvtjO1kuoRIOYgHn5Vnjo9x1hLv34ZiaK2OH0ruJ -uSaHBCE/1AF9z7Z+s7oE0nltPSRFWcdmLIpwbZp0PKYUxx8oXFyPC0Tqbm0bCwG6 -vw/4L/dPkhgGXokCHwQYAQIACQUCVbV38AIbDAAKCRC4Y17rAw1a7e7kD/4zcH1m -GQkfMJNWvHbJmI7U9/1B2f9ev5HWzGtOCY1baAuPAySk6LVHk5N95MYaP+6512Ob -kyjkRAmKveXkxU8PsTqBRJTBuW1r0wKP5l8+rtcQaH9XkIQqdJHoB6uOZT3gtdCN -rSKBsCi5NQ+OAHzvLvdppAO5Dg9fmpz9+iRq/KFHWWcGwSIDDTySkoIDjkn+2x0K -kpodfjhm2PVtL2UP5vDM8j4JOxPXAd4041EfDgh/2qVULxHisQw+gplG8QuoE14R -1EZ4G9wpJUK1+eWs61L/XSMa9sFejaGqeDc4lmyowAc5R6ZycZf7MImIKQtNLBQD -0AcQNarqrt0t5SuXtTosd9Kna8HnqJUJB8n/Hho0XydUfwbnelsFEZYbXRtma1nC -/FHHsGS8DueFe9Jfv3+VVpGnfvYBqIL5jc0xEorJA6QqH2/70uKUmAZ/NYpTDSwZ -mHxPTiE6CRfL3AGMJIIH6s31XeAs2h9zDMKXMNz/k9fiEuOiHngzDuKCERpBXbAy -hUqufP34hKz1IDRWEXzlPL2DQpZmEMJl4mbIkY7DkDf54s30+W+fRSHowDuC+dY4 -R9KAyQbhzGj+19lgp/6NafP8KIsGAghDN52+g0cpFqvbPRWc78TR0ZuEtubG5rK2 -nls3nqfflOZ0H7ovl/H4s+iKfZZEsyJQCItZxw== -=uGGf ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/0608B895.txt b/getfedora.org/static/0608B895.txt deleted file mode 100644 index 1bfc3d5..0000000 --- a/getfedora.org/static/0608B895.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/0608B895 2010-04-23 EPEL (6) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBEvSKUIBEADLGnUj24ZVKW7liFN/JA5CgtzlNnKs7sBg7fVbNWryiE3URbn1 -JXvrdwHtkKyY96/ifZ1Ld3lE2gOF61bGZ2CWwJNee76Sp9Z+isP8RQXbG5jwj/4B -M9HK7phktqFVJ8VbY2jfTjcfxRvGM8YBwXF8hx0CDZURAjvf1xRSQJ7iAo58qcHn -XtxOAvQmAbR9z6Q/h/D+Y/PhoIJp1OV4VNHCbCs9M7HUVBpgC53PDcTUQuwcgeY6 -pQgo9eT1eLNSZVrJ5Bctivl1UcD6P6CIGkkeT2gNhqindRPngUXGXW7Qzoefe+fV -QqJSm7Tq2q9oqVZ46J964waCRItRySpuW5dxZO34WM6wsw2BP2MlACbH4l3luqtp -Xo3Bvfnk+HAFH3HcMuwdaulxv7zYKXCfNoSfgrpEfo2Ex4Im/I3WdtwME/Gbnwdq -3VJzgAxLVFhczDHwNkjmIdPAlNJ9/ixRjip4dgZtW8VcBCrNoL+LhDrIfjvnLdRu -vBHy9P3sCF7FZycaHlMWP6RiLtHnEMGcbZ8QpQHi2dReU1wyr9QgguGU+jqSXYar -1yEcsdRGasppNIZ8+Qawbm/a4doT10TEtPArhSoHlwbvqTDYjtfV92lC/2iwgO6g -YgG9XrO4V8dV39Ffm7oLFfvTbg5mv4Q/E6AWo/gkjmtxkculbyAvjFtYAQARAQAB -tCFFUEVMICg2KSA8ZXBlbEBmZWRvcmFwcm9qZWN0Lm9yZz6JAjYEEwECACAFAkvS -KUICGw8GCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRA7Sd8qBgi4lR/GD/wLGPv9 -qO39eyb9NlrwfKdUEo1tHxKdrhNz+XYrO4yVDTBZRPSuvL2yaoeSIhQOKhNPfEgT -9mdsbsgcfmoHxmGVcn+lbheWsSvcgrXuz0gLt8TGGKGGROAoLXpuUsb1HNtKEOwP -Q4z1uQ2nOz5hLRyDOV0I2LwYV8BjGIjBKUMFEUxFTsL7XOZkrAg/WbTH2PW3hrfS -WtcRA7EYonI3B80d39ffws7SmyKbS5PmZjqOPuTvV2F0tMhKIhncBwoojWZPExft -HpKhzKVh8fdDO/3P1y1Fk3Cin8UbCO9MWMFNR27fVzCANlEPljsHA+3Ez4F7uboF -p0OOEov4Yyi4BEbgqZnthTG4ub9nyiupIZ3ckPHr3nVcDUGcL6lQD/nkmNVIeLYP -x1uHPOSlWfuojAYgzRH6LL7Idg4FHHBA0to7FW8dQXFIOyNiJFAOT2j8P5+tVdq8 -wB0PDSH8yRpn4HdJ9RYquau4OkjluxOWf0uRaS//SUcCZh+1/KBEOmcvBHYRZA5J -l/nakCgxGb2paQOzqqpOcHKvlyLuzO5uybMXaipLExTGJXBlXrbbASfXa/yGYSAG -iVrGz9CE6676dMlm8F+s3XXE13QZrXmjloc6jwOljnfAkjTGXjiB7OULESed96MR -XtfLk0W5Ab9pd7tKDR6QHI7rgHXfCopRnZ2VVQ== -=V/6I ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/069C8460.txt b/getfedora.org/static/069C8460.txt deleted file mode 100644 index a2202aa..0000000 --- a/getfedora.org/static/069C8460.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/069C8460 2011-02-07 Fedora (15) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBE1QZ78BEACdoNoYP9uIvFBJJ4Tg5Vn2gSFRDuKbj0qkifBdGT8co5Lfdgg2 -UnCximfJUxkul82RBu75AJ/VU6vgDvgnP4m5vhY+f/vV1scMeZbKzlJuW9YAIHqe -CK2W1zEVfx4OqxdGJpFWiE4q0M74FDRkYMSQzb3FQWpVI2enmJCvGTMSx3cwhus0 -ck0H16sOGflcNeQVeZ/fiUzQ65WOIn7NWwc/ZQyNxLE3JMAY4Z805c2GgpnP4orC -9YLH+fL7D+axL/Pd5cX6B0dy7mvVzBOPA0LL4qdvkss7vLCYlwR6urTgGAZHX4AW -myJg16Bq6JOrvtQ1TxEChQYYkVOmPXcpC5xBiZzA9TqHVHfXrjnfWjpsA2N1TH8y -VqkjOq40TDEwuSDDzX3f1xX9TaajmVwmKz9wTeBSw/UeLVMbiWhLzmHtD7UYKgdH -X9HxN2v6mOErrEdBLjhD7hTfkwOtBO8Lgd5a5VnAcnBJ0PcEEISOOsLGJPkr3HQX -Qxs4luSza8zq0/wnZc+cA6luDekj5JcuZvQAtej3xtQxI88MELNJfB5QvxwccwCC -OKTpEcNzF9VwB3qhWleV6ZETF0Usi/M6yk2XsoKXUy0aGfPhV/nVQ8mokbbQTQkB -cZ1jLSrbKqtrKOeZ8UvtJ1QGhrLtdw6CkTYk2oCxHPPSU+Naj536OpVFswARAQAB -tCZGZWRvcmEgKDE1KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCTVBnvwIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJELTr9XkGnIRghwAP -/RIIxLdPOr2dxQRRJ0Kd7pM2sDZaCuiplBGUU1Aslsjv5L1m4HjA1JwT/NDs2AvP -1B97rV7n9UDzudH5pnhUHLJeAd4Oxw2ngoNN6IA/6UHFw+MDjUCz2x16iQi0IpCX -o3lmIm9+ZM9761wvvzZWPEvZsUVVfaIWdML/FPagNi/JwICo2k7yyRPZUEOfmfsz -bRO8YTWP6Cz0YJ5QGO6MZbfCiRqkv11PAXmio39YchGHNXKmVsbzVSVz6CF3LU1o -5Y34R9UCWXXTk9U+koSPaUyn/oxnFMhFjklUB8PaFC67/Hr0wlP57xKMKdZkVR/O -l+vgJPwk9ZirFfHuwanfCjGRNTcY9bNgCPXB6sOIp27IoN8kVarEqnvzgJQWQVZ+ -ACmu3oPEZ9Aaywe17fkGHzQaKOCBxl+rvfBEpd+Mck4C4qecRqyXS5Ftiop77mbG -I1gGChBTG35YQUywZ+5DBYZ8PzWmYtPTTMelmaXcF1BYWFNgJuXpzkB2b70VMS4Q -e0Jq/1iB57lfaQ1617YhlAP1LhgTJmv6HSXX+eXS4w+vYN0VxAtK2RI8WYk8UDw9 -W2g4vQYi29H1ldWHmIx3leiB+JKpCKcqpbeGmblQ0zwbBZUsm083PJM2bTlv3mVC -RpNDMjs84DmneHRN9swSfC6fr8BeEXhS3tVCZriKoBfO -=TOl+ ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/0B86274E.txt b/getfedora.org/static/0B86274E.txt deleted file mode 100644 index 3bcc22a..0000000 --- a/getfedora.org/static/0B86274E.txt +++ /dev/null @@ -1,44 +0,0 @@ -pub 1024D/0B86274E 2008-08-27 Fedora (10 testing) -sub 4096g/7645A8D9 2008-08-27 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.9 (GNU/Linux) - -mQGiBEi13W8RBADWLvpDV7NziJYLMfXJzOLCEHRYaeDNowm4NV6399dkOd0Meuep -AdiWjq4dymgml7N5guT7OjzuMcZXYqOQ8ge7FR/M3m1nKS9XSZPCwWadgcDejRzd -ybTFnho9MiVH4TT4ozmI1pMQ6UcMb2TAiFF9C6cvHlboauRGLAsKOiuW+wCg1NGE -+KZr2ZAc3OKOZgJVq/0sQQ0D/3c041/hvaOb848PKAArlUhyTDPwFgxjaqzc70pL -RVmYydYa8jaPvop1q/HCmVYCOJZEHGtaDbzhJl8L/Qy1yfQzWeuer0NB1xOUPtKj -BvXP/KKpR7Kvz06jxWLc5hOg6D4Mf6Xy4AetMRnkeMQZ0qUANj+WQvqd/QyV7/1z -lLgsA/wIGWy9dMJPXOVLuT6pMBAMkVvQDh5dAbYhCI70rNVGJplpksNXpBWBEkSQ -z5DRR6d0ADBtJ1LaZWL0BC9dirJOJJyMxaM4G21Mgoc+XAehbKtVBZeF5pXwb2ch -f4xqsuo0MRv8pvkbOm5WPGagUygfgUWmCOAreRTpTmrBVleT2LQuRmVkb3JhICgx -MCB0ZXN0aW5nKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPohgBBMRAgAgBQJI -td1vAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQkqECPQuGJ05MHACcCkTz -QbIa1W74Dixo1WQSShB8P44AoL0wTcLLNjmgStugcUEnJ/dg8VAxuQQNBEi13W8Q -EADZI/3ySMJtnSDFYsUis9dezKNoi4IbuAiY/CdaMUPRg1rNGpkn/tz4LE9o0bke -ktXMCs5Xohv6e1fEOvm3bZNFZYSGea7cwp6sKD6jootHzLPAtJs9uyGiZbAXx29Q -11HHr66Gna/VdyVGNuRuy5Ygpbn7XXGO6hJci/lbvUOxi1Fui4sjQdnpLuH5mPrl -aXVMZSonn5lqLhAAQc9igPQVjFmbzhZA6x9z57ZvdjOWCkV1EdOIQUrhS3r5gnCv -vUCjLBhhKmKtKNLAlaaRXSP+/3el6GZiXnOFOECy7u7CFaR+Qb9w7IF+tuE9lIVB -r8UQNHpAzIzdxg376fXYwpkNbCOWMzqL9Y3HBXkdt58XQ+sR6yHzRlCc2mh9H8Pk -SkYHcWvPL8njwQzrHWPp0PZEjdImSQL+hfY2IOq/vfd5toCypPFoLen79K4YaB2x -F9W9vXs7W5kIviWTS/MOPMt16a3Sen31NPSNQN9q4zXOkAcus9jn0DBs6mozBE0H -ojd+59p5Gh1zTYmPmgtURd4bWgHKOGHgnY9TuvAPPR4AXC5zcBZWhi7hbXeLyjyc -+8BdP/oX/FNVsFDZfBEvie+8TFsC5H6PEb00CXSCoKX+6FzyoLH/ASO+tXaMcm3U -HabRf67bm60RReWCmHrMyKpLg3rP2K4kjMpDX5dyVRoumwADBQ//cUVFskjAVJ+p -eAefeay9gxHg7Y4vGxylMc8EsIhw5R3+uf0rpAT0iPdtRLJwt1LUC/kRavGNpeGP -4zeDXo1OItkxsAfMmnX6M5asm/OVHypl/Ubthp2/CuJk4hMTOG6a03SJsAAbrSDO -on6uF+fpetIH5J0zhSkQXQClRtQEPd54tgmKxNsRTkzz/3TSnlCsMILamsjrMSE+ -WWxAWKclLe2wXAHCfRwuI5Zen8r5+t3JJaYVtcxrw3jeqGjM+obaoDTAhx1jWY0P -I6ulowaFdNj3ZXOrFu5cVCmSDhidDV5yABpObPtw1s1GhJpMJfkja3hQH/v8MRyo -hWZVhYvgj6HACNsMXvGqUh8IgpaK9nSeCBJw5w6xwD8D8F3LSCrDUbXIu7QPJ3Ty -A9sZdjtSJeCyOFd4rP9yxcOAwTu/cerev/riGpEhAiUa0WQoR57N5x1aQTs/OoJx -o6KolUrEkUaYAwYFJjn+Lr0mzQzPFFqAPwjr2c9G6hgLy4C10fWY5cpxHwc1ayo0 -sVeEFfmtcxrk074tZU4kRfgjz2j+e9dGCdi423DBSau7DEjuQe+N8JUbMSr2+nvm -za/jGDwA4hD7/SBohBzVJq7MsCm0pXXvimaviYP72ghrXTmVd2obU29h5tTDXObW -88SChY+u1OrgnABGsBl8Q7hqOk7R3fyISQQYEQIACQUCSLXdbwIbDAAKCRCSoQI9 -C4YnTkQyAJ9R/UthQ4rWFEZfNfZp7Glgo6e02QCfaGiQ0wvRd1xIME6O6HTsEOlC -MC0= -=we9R ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/10D90A9E.txt b/getfedora.org/static/10D90A9E.txt deleted file mode 100644 index 29890ab..0000000 --- a/getfedora.org/static/10D90A9E.txt +++ /dev/null @@ -1,65 +0,0 @@ -pub 4096R/10D90A9E 2011-08-03 Fedora Secondary (16) -sub 4096g/8F77BDC3 2011-08-03 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBE45s+cBEAC3k1grLBR6sb6cuIINrRknYBwIjWTlZnzPDSOcAVJNIXx8NYtn -RiMEk50op/6fY3EFt1LLngx+mio/MtM7yNfzajv5bK9vMcZ5mHg5hP6/cJbZ61Ms -lTFBrXk4cusEaCeMenWbJjclehxKGjUdeXMWlWg67VPdn4I0uRt7kXB9HWncj2uw -1c8EJrSfPlrPiehOOKXxwKfJGGJsQ/P/27xKql66tjEd7DIni2GGBrUpEYkCkHZb -02iw5GKbtFqXbCGdyHF3Xm0TnBmV/OHdaG4TCaqHJhDtwc+rv+dl7bDo6AY2lUiG -FpAnHTXwUCWonu+zBVowWF35Pnk++mxtXZGy0/OmYhUu3rFQMiY7NWUXlwst9A7g -qcfT9Z1O0gBDmgUnfQiKQfO943KbfVvPKq42NVsWdmBCF0K7DgKXebsqGXW9X6Gp -D5eJjmCnxj4X33DAcYY1keulvfuFBCDC1MtZT2HnRtTXG3bh+0ydBZsGh4gq2d81 -Jia9xTJArsL5IzBM4BVDAjdZn0sI1QWgDl4NsH0pKa68d8VgA9Z7RtDGKUHoWT4D -T5WAPeLp8k24On9NIZDr7HbN08OzIz+hIBXjIu8dLLUio6q4pYi7KVmLCq6BPr2O -v7HYFdek+C8QDr5OuHWMh5ed9sEmJvN+iv/557VTsIQ6VALw5LHXDvZODwARAQAB -tDBGZWRvcmEgU2Vjb25kYXJ5ICgxNikgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9y -Zz6JAjgEEwECACIFAk45s+cCGw8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJ -EHfTowQQ2QqeR8sP/A0HT/T+AaveG943goScucNI4i1FKgULaULZGmL7zPZtqnaC -GL9CtBSosiZzDr/qIjxiw1wPqGaEyD+PqUUQbNhM9gy9U6q2C1ccq/zKW6zkvSAc -gv1BGBAhBtsccVjzYsaidc7vkOyIAGtlfkIfP4L5P792lsyzVvkmpSPhhhdAIE/v -FOpMtSbuOfF48tSOmCx7EU9ETg7Aaj4IkBqSkGdQe1xGtdtGHfVhRvDcev8GJF6/ -3nVHrVf17SlGQtqhxLQzTsTwOB3gohThQXbsPGMPW6kMa5C7ad9Ax37R6BxS637M -J5pLJO6s+ca48P9pZC4cLBOmeSWbOmcbiluU8ld0IWTObEfN6q+8LTO6oHbpnDFh -QJKJi4fYisgSF7CKs6Ks52JUKYt/j/D+SPhBfxV9vR3nIajJft49PvE6cchAbD8A -u5np2IEfn3mGIWNyTTeQzFTVh8GvLs2IhJmAfJ1HpV5ImloQJDCuhp7LdY+A1Ajh -+E2f2fvpesoQi4AgjZu9jmyEBXrcQ/in8IMII15x4dkZFqwjpoO/afNO/UBv3qqj -m7sW31clzsXNoxb13eAXIfZD0qbCeVUK+lBfxqa/XVxlzN0sbMIZkp5S8IT9aN7w -vbjOqdTRLPpsQvMclk2kbRcYb01jyhE2RTFDBdKPIHiecYcgBIza23eaT+rjuQQN -BE45s+cQEACFUIxT2qmfdrTfHQerVgTNR367JU/2Xg5qiTyvDaN7FuzZu0nvP42e -2NBMPtivKfEymdmmwnBvY05SNPfaVOmiSD1BwjKIwEFPABhaSS0lVm9v2zNcjtmz -kwY+QZRmeSgSgamU0oIC58H62380HHNoauTDrLMS7sIC51iQaA1y6EUw8rnAfdIf -IdRsq8u8C6CQ/8nuoQC9vC5BkDUA58jVHmZTlnUYq/3+GOJ6iPFPYjec1ueGK8fK -gWkgrtdr3KIn0Tz76aW9dC/m8ch62PoR6ZrwizzW+ZjVsM+WpR1fwRSIZ1fhaB8v -sJV41QUYgcD3yHXtapJhwGNg2qM93gybQ99rS9OfSPgUs3SoQMhZ0iDMeDteWmPR -OxvhaF9UhLgFqkh81+n3shBZHKB5dsHjBIIsEBjkzx7rVHf6vPOXfR+wyK6VgkYx -XZf/9ncQmeur3GSYhSsBk4qoCX/DPz6y5vZd8tAbqv4FThVaRst/2RRNCyWUmxVc -Sh/yXRtQshs5wwMu8sNcmjuOC6OteLnQwt7w+fCIZIFxhO9JGpSKVWqnqiFPr2Kp -cff9VBZYcggnol/DbMSRcOMNxQCzK0/wj/8IgEYUEilb6WS/6qAFHyBhpt4PbPnB -eAGTqiuA3wozhhXM3VHAg2koEUCNDktpuMr0rOJwHo0FgFPJ6ffVIwADBQ//WXQN -J3gnKiBZ2G8v81S4Cvh+cM/H2+hj2xtroX58kL7KMsYwZ+EDcZfg4rI4z9a6vTKH -ms0RzFNW489bE9crWVOWftXbYWMHAS3N33ngS0uyAxss+AuzP5U2CRuabgmx9aH/ -0h+gdXQVqiDptlQ2IZOUZAYQ+Wp6/mMbjDOSbU+ANPqM4xKGc0moi59V8/QjbYJA -mMnuYtcZs+GzyNzePTE8l3QTBVhnzOM93yMrZT/jFy7crKfjTyDFVvwFOd3D161b -it1RXVwX1Su+kNZ3bQijuhSE9HUH3ZxDM3MbWE5bMDozs+Zyg2ZxRGnmnVTGiAHr -mUpxAEpfw6/6get0kEexrv2L2w6JBZzkF1A2sLvsx4d2kNKtLT71BrLwlpjfFf9I -s7SZktLyCZAH09ync10ZM9IrV+jUMpBQF4JgjOcZx1tcXWMLM4Ocqe84buBVSCAK -NUzAOPGpmcj2JZLWT0uiE2sInRxWGWw0jWl1V40G7IXr+XFxWZvFUXvuBuhM52o3 -BVQmidxgzytmVpQDX3xlQ/gK9on863FWROP2+ZU6qnYXH5j4xlpk9+n8KUgyrZUp -7nmyk1w199xqEGVToo2LrTvuqicVaEjRa4eO6yQG6M8vwa1RwkEh8WFmGncIE6M+ -YcAv6PEqK5fDye5DTEN2ZOkMB7ns5KbFljfsCPuJAh8EGAECAAkFAk45s+cCGwwA -CgkQd9OjBBDZCp5U4RAAqjchfHG06X1LSYXhAEPTCZXi0BlXKBGCR0nRmhxT3jGc -oRhIPO8bekXu8/aNJrOkuXKCyAeXT3oa+FRAqlIrdFV1IGJy03hACn9IXF2Xf2Dd -7t3utSczRZ9zMkppvNbaxYwLuYdzKWyaGETEY2N4KMIyQE9At/t326oNkAI9xkji -zess00eCg4aOMuQ5upZvOJCeWGdYEUzwy81m2O7oeYM93d9wELEplFf3JW0A8aVw -/PjfJsiRTLwodA634HAIZHGDUyThpTszQVsumcZbGnzO3vVg0l4r514Bh9yJ6zJo -FL4t7Pjg8SIxpcINvwixrb2LFXbmzKFVvaPP8J0zpLcdHrjuCFnlyRh40tAM6UZP -MrOcaGWxgS4dR2DVhxnfvt7nL1P4JoN8Fn+7S1wbYxcXkqRcCCuoRRvmQWcEO6bR -lLyKSp/4d4HEBThi0ddLm3uGuuUJyKA/xc7sLsYp46DOiI1KvOZlE3OOldJNCZXP -1OZ5IhsLmadPW9MSaZmWl1bw3lycD6VDa30SgRIaalaTpOIS3Q41SwYQQ22U9FdQ -k8lp7Q2wWHXC2XzNn5MoVP8V7MN1zIcLr/MLg5VgTB1krxqgREbzbGuTh/iMyLmK -NCEnMc2axo867fFMSCnI9c8aWTFajF8ROQhqWcCn7Fratuml6XKD3314WQk/uQs= -=oefa ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/12C944D0.txt b/getfedora.org/static/12C944D0.txt deleted file mode 100644 index e7e7341..0000000 --- a/getfedora.org/static/12C944D0.txt +++ /dev/null @@ -1,30 +0,0 @@ -pub 4096R/12C944D0 2019-08-12 Fedora (32) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBF1RVqsBEADWMBqYv/G1r4PwyiPQCfg5fXFGXV1FCZ32qMi9gLUTv1CX7rYy -H4Inj93oic+lt1kQ0kQCkINOwQczOkm6XDkEekmMrHknJpFLwrTK4AS28bYF2RjL -M+QJ/dGXDMPYsP0tkLvoxaHr9WTRq89A+AmONcUAQIMJg3JxXAAafBi2UszUUEPI -U35MyufFt2ePd1k/6hVAO8S2VT72TxXSY7Ha4X2J0pGzbqQ6Dq3AVzogsnoIi09A -7fYutYZPVVAEGRUqavl0th8LyuZShASZ38CdAHBMvWV4bVZghd/wDV5ev3LXUE0o -itLAqNSeiDJ3grKWN6v0qdU0l3Ya60sugABd3xaE+ROe8kDCy3WmAaO51Q880ZA2 -iXOTJFObqkBTP9j9+ZeQ+KNE8SBoiH1EybKtBU8HmygZvu8ZC1TKUyL5gwGUJt8v -ergy5Bw3Q7av520sNGD3cIWr4fBAVYwdBoZT8RcsnU1PP67NmOGFcwSFJ/LpiOMC -pZ1IBvjOC7KyKEZY2/63kjW73mB7OHOd18BHtGVkA3QAdVlcSule/z68VOAy6bih -E6mdxP28D4INsts8w6yr4G+3aEIN8u0qRQq66Ri5mOXTyle+ONudtfGg3U9lgicg -z6oVk17RT0jV9uL6K41sGZ1sH/6yTXQKagdAYr3w1ix2L46JgzC+/+6SSwARAQAB -tDFGZWRvcmEgKDMyKSA8ZmVkb3JhLTMyLXByaW1hcnlAZmVkb3JhcHJvamVjdC5v -cmc+iQI4BBMBAgAiBQJdUVarAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK -CRBsEwJtEslE0LdAD/wKdAMtfzr7O2y06/sOPnrb3D39Y2DXbB8y0iEmRdBL29Bq -5btxwmAka7JZRJVFxPsOVqZ6KARjS0/oCBmJc0jCRANFCtM4UjVHTSsxrJfuPkel -vrlNE9tcR6OCRpuj/PZgUa39iifF/FTUfDgh4Q91xiQoLqfBxOJzravQHoK9VzrM -NTOu6J6l4zeGzY/ocj6DpT+5fdUO/3HgGFNiNYPC6GVzeiA3AAVR0sCyGENuqqdg -wUxV3BIht05M5Wcdvxg1U9x5I3yjkLQw+idvX4pevTiCh9/0u+4g80cT/21Cxsdx -7+DVHaewXbF87QQIcOAing0S5QE67r2uPVxmWy/56TKUqDoyP8SNsV62lT2jutsj -LevNxUky011g5w3bc61UeaeKrrurFdRs+RwBVkXmtqm/i6g0ZTWZyWGO6gJd+HWA -qY1NYiq4+cMvNLatmA2sOoCsRNmE9q6jM/ESVgaH8hSp8GcLuzt9/r4PZZGl5CvU -eldOiD221u8rzuHmLs4dsgwJJ9pgLT0cUAsOpbMPI0JpGIPQ2SG6yK7LmO6HFOxb -Akz7IGUt0gy1MzPTyBvnB+WgD1I+IQXXsJbhP5+d+d3mOnqsd6oDM/grKBzrhoUe -oNadc9uzjqKlOrmrdIR3Bz38SSiWlde5fu6xPqJdmGZRNjXtcyJlbSPVDIloxw== -=QWRO ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/1ACA3465.txt b/getfedora.org/static/1ACA3465.txt deleted file mode 100644 index 9727474..0000000 --- a/getfedora.org/static/1ACA3465.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/1ACA3465 2012-01-10 Fedora (17) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBE8MkeIBEADfn8QtElquxUAVvS8th7UnVmfkExw7jC7SVy7dGlXo5rgxqETM -AZorpDIvAtKX5VMr/lUfODB6sSymh0e6EdvYQfHrpImO05F7WBq2DhRW74j1DRNu -8vohKPTsSZTEZo/mrUBDAAGtGOXcrsQxx4J2Ur73+r18ODd+v6O33YevlFmwmFYT -uDcgdhxyxBdpJVES8MdxO349uP9bvrU+3KjpDDGHb/hMbY8az7lwLtBufRrAekhN -5Cg7+zm+I+wVGzgzSw0yrIh4hdVts4RKZIrl2N3VeZcCY4IrNZFd2Do6HhIwA7l/ -/xpTEBTZ4BmnGP9iufUVa2h97/JmKy38rM88IovIcTSnYDG68k/NxUkC+dLriI4T -BNc9kJLVo821x77WYViNXHscF8ujlf73HilfCnhEtNwViGO7x41guQrdv5k79UDf -1CylSZ+76vKXziz6uNHzIagiViNOvYHOoEH8jDNnubqFTxYXUNks5l3/byllQ0XK -Oj9RarmjsMS3udRB6RCiEnzDbPge2S9gmdmY8MA3QeZ3aWoZJqygDQ0WNUOjPZ0E -80x+xbUyAK06/SCzs6bUx6GMXd5Iy5r3Gc+6LRt4WEG5r/vJEHPSj3qAoVqydsY0 -GjASPIQmYduCdi7Inf0w+2n+nJGPcK1k432xHD0z0kp1Q/xcOH/Tul3bcQARAQAB -tCZGZWRvcmEgKDE3KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCTwyR4gIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEFDpTJkayjRlKxAQ -AICtQT+j8Sum1J86yBwso1wuzK2sHOXbfC1LCdQw2u6QLfKSUsCnQ5AL+oCnS491 -5fjrYksT2siclLhgZX7/yF76XuYHHhRTO65NaPSCxxhN6S9zbExUPRoxFL1ay0cH -p14WYI1/SGmKPcJmigV6n8+wGYl+zWlH9eiiFP/+JCxJ0ZvRg3mgT5zcPdIzTDOz -4rTE3WfH3qqxYhw2ttDPomBSdbgJw2N6bj46t8rljIDGdeKpFHYMVXpUp0gDkEoY -bAiQhvZaa2F6mGMfXRdr4Phs562+tF/Qy/JaK8uafYZPHTtC16NHf87DYceLzvci -W1KNBYGrEHm5NMguBlqP348FYMp+6hJDYMl38Qx3BK9bz6lW0G75tgaAZ+sxAFGs -/MUcjChkF9OcF7Y7W6hY3IQb/+FgB5eNpBqfmZZ76ywpS+D0sIqxzWoILtlXdHeN -eM4YiX0gvVQXwn9S89O5vWKxWYspywfgV/aXHk14O6k7oi8wInJOvgxZKEHUT4XU -K7DyogL45VV9iYoWYIym2L17VBnINE/Kwmc/81nYigE0tTOwaR+qMFBSRlkOA4+X -ZlIvb5Cft7CdC183FYLIM+B6xNSKE/OhavHZsRJrLZC1aAP8MNh8Cy7Jqrn1/Qjj -6sncrqaj/Yis4yAaINk4MrnbImN2MwzU70q0eR3kA6PY -=3+4G ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/217521F6.txt b/getfedora.org/static/217521F6.txt deleted file mode 100644 index 213d739..0000000 --- a/getfedora.org/static/217521F6.txt +++ /dev/null @@ -1,33 +0,0 @@ -pub 1024D/217521F6 2007-03-02 Fedora EPEL -sub 2048g/B6610DAF 2007-03-02 [expires: 2017-02-27] - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.2.6 (GNU/Linux) - -mQGiBEXopTIRBACZDBMOoFOakAjaxw1LXjeSvh/kmE35fU1rXfM7T0AV31NATCLF -l5CQiNDA4oWreDThg2Bf6+LIVTsGQb1V+XXuLak4Em5yTYwMTVB//4/nMxQEbpl/ -QB2XwlJ7EQ0vW+kiPDz/7pHJz1p1jADzd9sQQicMtzysS4qT2i5A23j0VwCg1PB/ -lpYqo0ZhWTrevxKMa1n34FcD/REavj0hSLQFTaKNLHRotRTF8V0BajjSaTkUT4uk -/RTaZ8Kr1mTosVtosqmdIAA2XHxi8ZLiVPPSezJjfElsSqOAxEKPL0djfpp2wrTm -l/1iVnX+PZH5DRKCbjdCMLDJhYap7YUhcPsMGSeUKrwmBCBJUPc6DhjFvyhA9IMl -1T0+A/9SKTv94ToP/JYoCTHTgnG5MoVNafisfe0wojP2mWU4gRk8X4dNGKMj6lic -vM6gne3hESyjcqZSmr7yELPPGhI9MNauJ6Ob8cTR2T12Fmv9w03DD3MnBstR6vhP -QcqZKhc5SJYYY7oVfxlSOfF4xfwcHQKoD5TOKwIAQ6T8jyFpKbQkRmVkb3JhIEVQ -RUwgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iGQEExECACQFAkXopTICGwMFCRLM -AwAGCwkIBwMCAxUCAwMWAgECHgECF4AACgkQEZzANiF1IfabmQCgzvE60MnHSOBa -ZXXF7uU2Vzu8EOkAoKg9h+j0NuNom6WUYZyJQt4zc5seuQINBEXopTYQCADapnR/ -blrJ8FhlgNPl0X9S3JE/kygPbNXIqne4XBVYisVp0uzNCRUxNZq30MpY027JCs2J -nL2fMpwvx33f0phU029vrIZKA3CmnnwVsjcWfMJOVPBmVN7m5bGU68F+PdRIcDsl -PMOWRLkTBZOGolLgIbM4719fqA8etewILrX6uPvRDwywV7/sPCFpRcfNNBUY+Zx3 -5bf4fnkaCKxgXgQS3AT+hGYhlzIqQVTkGNveHTnt4SSzgAqR9sSwQwqvEfVtYNeS -w5rDguLG41HQm1Hojv59HNYjH6F/S1rClZi21bLgZbKpCFX76qPt8CTw+iQLBPPd -yoOGHfzyp7nsfhUrAAMFB/9/H9Gpk822ZpBexQW4y3LGFo9ZSnmu+ueOZPU3SqDA -DW1ovZdYzGuJTGGM9oMl6bL8eZrcUBBOFaWge5wZczIE3hx2exEOkDdvq+MUDVD1 -axmN45q/7h1NYRp5GQL2ZsoV4g9U2gMdzHOFtZCER6PP9ErVlfJpgBUCdSL93V4H -Sgpkk7znmTOklbCM6l/G/A6q4sCRqfzHwVSTiruyTBiU9lfROsAl8fjIq2OzWJ2T -P9sadBe1llUYaow7txYSUxssW+89avct35gIyrBbof5M+CBXyAOUaSWmpM2eub24 -0qbqiSr/Y6Om0t6vSzR8gRk7g+1H6IE0Tt1IJCvCAMimiE8EGBECAA8FAkXopTYC -GwwFCRLMAwAACgkQEZzANiF1IfZQYgCgiZHCv4xb+sTHCn/otc1Ovvi/OgMAnRXY -bbsLFWOfmzAnNIGvFRWy+YHi -=MMNL ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/246110C1.txt b/getfedora.org/static/246110C1.txt deleted file mode 100644 index 07a1cac..0000000 --- a/getfedora.org/static/246110C1.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/246110C1 2013-05-16 Fedora (20) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFGVT8oBEADiEFecKV2eDgaIoK6O/+2UxTGYHpVJYHj7Jl2EGHZWJ3jaN2xD -slXrhgurZZaXl1Cb1vplFIrMtC4rUxyKWwGPRa3jo9MkSgpwqFsYnKsFxo9Vu/9Z -XRAD6x4KfSl1J+c56qjKaBA3e873pcapBSWaw/gWCIxDQzhhiqYEdqFiu3PfbTvB -YT1Zp3QqN5TW61Rs/Uq8WkoOLKhAnucuvrfqapAVN5Hc2JWeh32sLNLdXfo3XnWd -VksqfXHnt9cr9I4ErsJ0KyBZFx36d7rQ3VoPKYDBtL8ZhwNkgJ6QVIZl1u33SPAF -QbsetNtQhnN8Nx6ks6e5+mTOGz1HneD36wU1zeUxSFCFoD4W+bvUTpquTlDRRZXk -GlkSqUBxxAD8vQm55+cVhrwaTRT80vJFYXNPx47zNih7xZVznwzzGCG3cWlKlhhO -KZMXtmgW0KSi7ICb3KUU0e5njP3OBkeB7N2o9le2Qtf7t6LfJdwY13dS4c05olhe -j7pEO+qVGBWgaC+plbiYCh1MQedb7dkjUPByTiHVpBUQH4aktLqLd/0Dt6fqxMh+ -MhxglZW7iVfTcfCqfQfNmyctD2t/fQzyfR9tYd5oIO5dep9Q2aIXlf4TJ3m392v3 -Dxz47P1L9l6kATflx1nj2tG1U6qP0ePlkDjDD9XIL9cKZ08UXaTiHYY/qQARAQAB -tCZGZWRvcmEgKDIwKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCOAQTAQIA -IgUCUZVPygIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQLrFh+iRhEMGm -2Q//R1h9bBgdF4w9ZWM0ny5rx/DzXQCDP4CKMEhzvJXAPZuSDtWa+PkppGp4rq49 -1GwGRs3CGF3UikX6Mqr0TbZiGpXZ+5MaXlgU59ULtvHaRGKYK5lvoeLyOZpBB0vo -yqBuCGnHPbHyJjilwMXp91LNdbRu3yHYNFgr/ZLQcJ/66UMnawX2Hb4fTcUPKb+X -r57gmERlRBSTbAPSM8WfCtQh1GtxLJT7rW8ayeD8DFnNB3oaTKqOyH1p2Cxxv4qi -xUCEx0k57TfCRcBzrb4CPG15phmLbCBFm+jdDNboi+LYIHAj9XU1znJm/lHLAHNI -cF6/9UwObs0L2i/yWqVJaj0fQ4hhhz7l2SOnzZH7SPj2irNkxGNMHrDXNESNZgzR -AnnteEMHv3UMJfDdn0llet7sP+7wVJEpBJaU+e1rZBvgM0KvQt53xKkCgLN8kVpn -JtbJ8DXvlt7yeCIRfhHJFvhY7+hdZqSygzOSUPeUcr+0VKgBjByUWdbAQV13TKo4 -a4B+t7Fzj5UT9xKGqebv0CEnKI210ONg9Oj2NZU2PaPLTveiGe1BbEvazdNbd7Ts -zasvA0Wp12xIyJpeJwe6TNNR9lLDkj9fhvLUH0o+6bPyHas4hrhcZsQa/trSyiiS -XFz25bVz+AZ0b3aEcABLDCpG8nMOPiSSE6uccRAlW7muFOw= -=EJ/7 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/2F86D6A1.txt b/getfedora.org/static/2F86D6A1.txt deleted file mode 100644 index 60d8e83..0000000 --- a/getfedora.org/static/2F86D6A1.txt +++ /dev/null @@ -1,30 +0,0 @@ -pub 4096R/2F86D6A1 2019-06-05 Fedora EPEL (8) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFz3zvsBEADJOIIWllGudxnpvJnkxQz2CtoWI7godVnoclrdl83kVjqSQp+2 -dgxuG5mUiADUfYHaRQzxKw8efuQnwxzU9kZ70ngCxtmbQWGmUmfSThiapOz00018 -+eo5MFabd2vdiGo1y+51m2sRDpN8qdCaqXko65cyMuLXrojJHIuvRA/x7iqOrRfy -a8x3OxC4PEgl5pgDnP8pVK0lLYncDEQCN76D9ubhZQWhISF/zJI+e806V71hzfyL -/Mt3mQm/li+lRKU25Usk9dWaf4NH/wZHMIPAkVJ4uD4H/uS49wqWnyiTYGT7hUbi -ecF7crhLCmlRzvJR8mkRP6/4T/F3tNDPWZeDNEDVFUkTFHNU6/h2+O398MNY/fOh -yKaNK3nnE0g6QJ1dOH31lXHARlpFOtWt3VmZU0JnWLeYdvap4Eff9qTWZJhI7Cq0 -Wm8DgLUpXgNlkmquvE7P2W5EAr2E5AqKQoDbfw/GiWdRvHWKeNGMRLnGI3QuoX3U -pAlXD7v13VdZxNydvpeypbf/AfRyrHRKhkUj3cU1pYkM3DNZE77C5JUe6/0nxbt4 -ETUZBTgLgYJGP8c7PbkVnO6I/KgL1jw+7MW6Az8Ox+RXZLyGMVmbW/TMc8haJfKL -MoUo3TVk8nPiUhoOC0/kI7j9ilFrBxBU5dUtF4ITAWc8xnG6jJs/IsvRpQARAQAB -tChGZWRvcmEgRVBFTCAoOCkgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMB -AgAiBQJc9877AhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRAh6kWrL4bW -oWagD/4xnLWws34GByVDQkjprk0fX7Iyhpm/U7BsIHKspHLL+Y46vAAGY/9vMvdE -0fcr9Ek2Zp7zE1RWmSCzzzUgTG6BFoTG1H4Fho/7Z8BXK/jybowXSZfqXnTOfhSF -alwDdwlSJvfYNV9MbyvbxN8qZRU1z7PEWZrIzFDDToFRk0R71zHpnPTNIJ5/YXTw -NqU9OxII8hMQj4ufF11040AJQZ7br3rzerlyBOB+Jd1zSPVrAPpeMyJppWFHSDAI -WK6x+am13VIInXtqB/Cz4GBHLFK5d2/IYspVw47Solj8jiFEtnAq6+1Aq5WH3iB4 -bE2e6z00DSF93frwOyWN7WmPIoc2QsNRJhgfJC+isGQAwwq8xAbHEBeuyMG8GZjz -xohg0H4bOSEujVLTjH1xbAG4DnhWO/1VXLX+LXELycO8ZQTcjj/4AQKuo4wvMPrv -9A169oETG+VwQlNd74VBPGCvhnzwGXNbTK/KH1+WRH0YSb+41flB3NKhMSU6dGI0 -SGtIxDSHhVVNmx2/6XiT9U/znrZsG5Kw8nIbbFz+9MGUUWgJMsd1Zl9R8gz7V9fp -n7L7y5LhJ8HOCMsY/Z7/7HUs+t/A1MI4g7Q5g5UuSZdgi0zxukiWuCkLeAiAP4y7 -zKK4OjJ644NDcWCHa36znwVmkz3ixL8Q0auR15Oqq2BjR/fyog== -=84m8 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/34EC9CBA.txt b/getfedora.org/static/34EC9CBA.txt deleted file mode 100644 index fb488ef..0000000 --- a/getfedora.org/static/34EC9CBA.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/34EC9CBA 2015-02-17 Fedora (23) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFTjh1EBEADJrIhO8LdpWsfCY/d6N9mAD3mDNenFs5XQKWeUnEF7PrOr+oVZ -K+Qt2FKlluz5DXqhqSpe9LfO2HwXRLqWX4EZDstvgpuJkcEmGGu5qnV6dbSJp3Nn -cmpdSCYH4Yc4mjxnEY3L6n3kdFQpbEsqm1rYSp7NQqMAfKPV9CGT+1XajNWZ1l+e -KIS+GSNCoujdtnKkX6ioFTXu7T6XNNNdVLNgwdodIAg4SlTIQ3kd9VyBT36j1r31 -dx0f4Roq3vZh0wmxbyoeZ8oyaF16GpjCjwYQhXgID35WC9mxRYI6DRxmO6vf1TUM -pscourvEeiDnWDYFfEseRvUIId0RoYGifymFSBcvoBB0ITyQ86N/106VuitqZLi3 -GyZQOIsIQ8qkZVBTIHhnfFoEBdOrTMG4p4Vp5oCIUYGfdpFafUUyIaddING5tkXI -uwdrKFw682DzutzErelocZxwpHYCfbaF7Emceub7SXJcuDlQ25Y2tNXaVKFcuXjO -2MBwPldP5aJGHrNPh2TSdSSDFCnj2zocVffojL5Y+yQBV5mPtSr85Q4UduvBPhyO -Ziy55FBK9XfZaq0Ck4yZYVfnctBXalEpSkPKAtlWfy7uDAjfdtgm8gO8qYqDaB7T -+IbW2631zM9cxuZWzOZPZ5BnZbo2YlNHP/+ZXUqpNO0cNjnisBOWiOdxJQARAQAB -tDFGZWRvcmEgKDIzKSA8ZmVkb3JhLTIzLXByaW1hcnlAZmVkb3JhcHJvamVjdC5v -cmc+iQI4BBMBAgAiBQJU44dRAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK -CRAyR0z4NOycup8+EACxni7IFd6AAo2nS4wVsqQL4Oeo6MIJG+P4up3cMlhmg79b -JiRPVDky9R1tcjK+OLb0TSn5KBP/oUSUeyQRNSygOrwlUQ6wXPfX4/MaYqN3+JVY -u0rbIoW7+TwrIDYvDurbaH/WkZoi7gcjesl/uJa4g9tY8RGNH0vSI9WTahs+YWu4 -0+alH1k3XHblrS1mROKycZtiMIw6hdC72LM3JHXp1yi5wwAPNjp+IAriQAe6AszM -ip6cjBxJLT8G+VP/Hzpd+IWmzjKnuO4GL5+e21DhRc8hXHJvwNthbon8GgYbH2S1 -wSmYSsxe6YXGXx+cCsFeewMZRQr7YA/K7HRmELezNpB3Z6oqjNgCS9R9LiHUAbZ+ -woN6TUHHqJONBx2rnczh19mZNn8cLuTqcelk9DlWnOa89yUAYnDfweQ8+9MX9r+r -zfdF4Dn6ElMUiM2gF05zBwcYtTW2vMmjw7VGouJRHWspHN4Yo1aZmMluxBWtU6E3 -wkqS85wCLTVwBfhkb4Jan8N6fWCSBc2VGluB1H/VK/xAmSOOv8SEXHYrQDsF0fy6 -0ILCxxvhMlREhRVsmUJMmPsMYFQGBAZAUBI5+sRj5I/4AVXG9Rgmfd9VsxE4cEXh -5Nx8TRdlZirrgLwYkgOOptzI/Et1galB9isCA/3FtlTTPeJAbv9b9pZJUqlEeA== -=YxC1 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/352C64E5.txt b/getfedora.org/static/352C64E5.txt deleted file mode 100644 index 9001bd9..0000000 --- a/getfedora.org/static/352C64E5.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/352C64E5 2013-12-16 Fedora EPEL (7) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: rpm-4.11.1 (NSS-3) - -mQINBFKuaIQBEAC1UphXwMqCAarPUH/ZsOFslabeTVO2pDk5YnO96f+rgZB7xArB -OSeQk7B90iqSJ85/c72OAn4OXYvT63gfCeXpJs5M7emXkPsNQWWSju99lW+AqSNm -jYWhmRlLRGl0OO7gIwj776dIXvcMNFlzSPj00N2xAqjMbjlnV2n2abAE5gq6VpqP -vFXVyfrVa/ualogDVmf6h2t4Rdpifq8qTHsHFU3xpCz+T6/dGWKGQ42ZQfTaLnDM -jToAsmY0AyevkIbX6iZVtzGvanYpPcWW4X0RDPcpqfFNZk643xI4lsZ+Y2Er9Yu5 -S/8x0ly+tmmIokaE0wwbdUu740YTZjCesroYWiRg5zuQ2xfKxJoV5E+Eh+tYwGDJ -n6HfWhRgnudRRwvuJ45ztYVtKulKw8QQpd2STWrcQQDJaRWmnMooX/PATTjCBExB -9dkz38Druvk7IkHMtsIqlkAOQMdsX1d3Tov6BE2XDjIG0zFxLduJGbVwc/6rIc95 -T055j36Ez0HrjxdpTGOOHxRqMK5m9flFbaxxtDnS7w77WqzW7HjFrD0VeTx2vnjj -GqchHEQpfDpFOzb8LTFhgYidyRNUflQY35WLOzLNV+pV3eQ3Jg11UFwelSNLqfQf -uFRGc+zcwkNjHh5yPvm9odR1BIfqJ6sKGPGbtPNXo7ERMRypWyRz0zi0twARAQAB -tChGZWRvcmEgRVBFTCAoNykgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMB -AgAiBQJSrmiEAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRBqL66iNSxk -5cfGD/4spqpsTjtDM7qpytKLHKruZtvuWiqt5RfvT9ww9GUUFMZ4ZZGX4nUXg49q -ixDLayWR8ddG/s5kyOi3C0uX/6inzaYyRg+Bh70brqKUK14F1BrrPi29eaKfG+Gu -MFtXdBG2a7OtPmw3yuKmq9Epv6B0mP6E5KSdvSRSqJWtGcA6wRS/wDzXJENHp5re -9Ism3CYydpy0GLRA5wo4fPB5uLdUhLEUDvh2KK//fMjja3o0L+SNz8N0aDZyn5Ax -CU9RB3EHcTecFgoy5umRj99BZrebR1NO+4gBrivIfdvD4fJNfNBHXwhSH9ACGCNv -HnXVjHQF9iHWApKkRIeh8Fr2n5dtfJEF7SEX8GbX7FbsWo29kXMrVgNqHNyDnfAB -VoPubgQdtJZJkVZAkaHrMu8AytwT62Q4eNqmJI1aWbZQNI5jWYqc6RKuCK6/F99q -thFT9gJO17+yRuL6Uv2/vgzVR1RGdwVLKwlUjGPAjYflpCQwWMAASxiv9uPyYPHc -ErSrbRG0wjIfAR3vus1OSOx3xZHZpXFfmQTsDP7zVROLzV98R3JwFAxJ4/xqeON4 -vCPFU6OsT3lWQ8w7il5ohY95wmujfr6lk89kEzJdOTzcn7DBbUru33CQMGKZ3Evt -RjsC7FDbL017qxS+ZVA/HGkyfiu4cpgV8VUnbql5eAZ+1Ll6Dw== -=hdPa ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/3AD31D0B.txt b/getfedora.org/static/3AD31D0B.txt deleted file mode 100644 index 7f3b005..0000000 --- a/getfedora.org/static/3AD31D0B.txt +++ /dev/null @@ -1,65 +0,0 @@ -pub 4096R/3AD31D0B 2011-02-08 Fedora-SPARC (15) -sub 4096g/A9DAE699 2011-02-08 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBE1QlXcBEADKAtnv9s4acf/wmyIWgv2HhuF07d95eX0klaLcKxQ5T+/TYWps -rH/t8aOyX1m4yMXCIusseUiJgrwhcHkMthjEFTNNiK8dba3XtCtaiAcfLNun0VKc -xdPQOEI3lSrJ+YfC+Veb5l0jdl5nDddYaWUgh/h6bMHMFDER9NT0BpRwGtuYombt -XkQTZ0bLo+HHtDLv3zDIpezhNS7l2cDIkRj9LYzSnoV4Y4g2LYnqr+u52Ng5gb6M -21/kgg04LWDF273MNRS7lENNznyreAoFqMJJs+XBe595XgTBkHKmdCdyaFajx9e6 -JfRPZ8rBk5aSD2mYzKRP0U6c8eZBEMX4whaaTJk57TfA8W5umI2qMLBtoln54NoY -6RaJJt8Alfa6lEDUHmTdPD21+2QiZOoZBTl6K0Xa1SMd5x61iD5+1RDSG6T5w+sN -vNpi0xuT98NQ1dBWtcmnqWR/nkzpH2+CN5HZofG4RVvvb/LWYr13MvDkQZ+J0q7h -KGpb8tx5iT44jR8NXdt8r1By4G/jWMvdS6BFkeVZdUDddJ3pQGorHxchnU3zhhE7 -8gPz6w6xvQdNb2t8FIaQUGEvwx7e8Cg36MkC13Fj7bg+UbCbf9vV/v3XGlP783vu -EA8z8o9C5FII3MOZjIHnOtXROL1KVjECjPPiVGiMIyMFaM0kjvO6sxHQUQARAQAB -tCxGZWRvcmEtU1BBUkMgKDE1KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokC -NgQTAQIAIAUCTVCVdwIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEOXZoFA6 -0x0LzMUQAK0zCu9fqUL29n/m+EVgLPZ1WS6NVHnJzhTe0ei+B4kTNIODxBWKr/+X -oHJzeQ20jvEDz7uPGg/8UBd12yAsgQ61v22zQRKP5iai2agdnvbC6vlzjpkf52yc -mkT6nW8hB0JPcdM3wFOcYG+j8uie19ygy13+aMVdWX+ltzV1Kq62tsjGizH0mJBR -bV2gP3Ufcf6p1OuH4uiAt/6F+jDWxCkkQ5EVmYomxwFH8+Rm9pJb45NXYd5PxrwO -KNC0osCDeCwFVO8tICxtCbue/VvPgEOVLZB+TH+shSPBCAP6spNHCyPUIy7UosTJ -BJK0TZawjTi0NrS47Ih0HqVviSFlJdkiwlYAYMYM05YdVWUf6at3x3S8gIGfhFaT -G7eFEMC0eMHC1igIG2e+F5aF/OLjnwwo2t+6NL9fuutA/mNBCJxLRqTzP6c034My -l8ct9H/+VVHNJQhyvzdSCPFtqCS4+qyHb3pn76OPaeF8P9Y8jYJ9CjeWBMD6iGZP -n0crEJm9QsZ94CJYmo09IsTxghdbBWAtpJVCgy6oceErAGr5bRfdg5ZF2e3MzeAI -qW0hfT5t1HpSFOGyhD5N7cUXJ3Fw6xbfKzq8Hw4t+hzSvmPTzZdqk+CKnYTwhfyA -HWp2ayp449JL7UmDfkiT9ZCPd6e6WubLzkP2IRzDoGYl8kPJozDcuQQNBE1QmVcQ -EADO3F51ZENZiTbkm6aU22QaFNLS0H3aYQqu5DyA+6Dw+fNwuWCoSqpdBZ3ItR2r -mnOmw1LzKBpKCai6MeQZPVpqgVyRs4N8Uwl4vPP4HOGMzdU7jVEC2soNjwPAbszZ -Us8Q82kBP2Lr9gr1E2D11qZmilc7CkCXAYvUAG5Pc2D1GVUTftzW1UaFiaVB5l/s -nmwnF2gFKFBTj/XBl+/xx062KWKUDAXySdpZ54dxSyOYUEIF0c6l/sLaattyFarB -7cNSlLglvu4FMYx2W/8GKDuQpczog27F4v9whqKR1i8AUUQMH4mAxlZ61xGmJoZv -Fx5Wtn1Bb00m7TTlpwkjW7I4HXEYZB/QpdUb4jgK9ZapAO6FYgWHiTOADAGZxnay -7MHaa9YKVamY0xbHV+NQNPxAJx3DkB8W1jxfzb41IKkcxJaCFUrGSJE4yvjaWp3O -BPpIiEparp7ckvLxo/9FajqwLvKdf98Fn5AbyzZEjXdyh7T81yu6XNwqz+1gRyEO -aAWM1osyHIY2Rp9nkalSZqkD5/cD4kx4FT4OLVicKWXU+MMJvL4RvkatlWM6yDM8 -ZAUb2bL3ywx8gLYUbvH5UnjK4FmDBZzKPLWHBKG84Kxi6kyug1uTrjE2rcELxI4k -enYqYpElIfomAuT+SuHY+pONoQ1EG5H4XoUwqW9EGQt6IwADBg/9EFWufNrW2Gjk -lZU3k9GHsCC4wO7OTudU0cFuxU2JPZnI/55xIT46zL864vupET97xow/QtzbHBEn -IeNyi1Dc/NRPoobec322HnXD110A/tA4nkYMp9gFUbEM/NIqAgM140zMxhukn68v -7I0zJ+T/VKndZnOL7BSnX/V+uJNwjeQahMd0T02+nz2lG+xsIG5HHGN2ExniQhXa -WkI5+MRbzfDaIInHMvRIR3YHwrEg6jU2/V5DSOIz39IhikjCyvSmO3/7tQD6f5Dg -PhM4atbLKj2mC6PeukH+x1tOqIAZoXZqfHNY9RGTvvqDYRQPycICMbv10RzUzpP0 -W07vc9r0rDD34l+f4iHbOS0Xcg3V6xV8+TXLY4WltdeOiC3hfx90f+jNX5BZB1Gp -WX1ks57Rv4bCcorZviL8h84xUaxMwgoU1VEA5izihk8M+8i0RtkcfL+81DTAudqR -69oLfKns97oVNQdGQ7cqc6fGWOZ7hXBzRxHf4YauXTnxTu4TbLtkLCWShenWX1nA -5tMQz1Pjyd+MLg1qeLbQw6gBeJ0b2LW1x+bfgotgEyAun35LXR4kxLpOlil4fA3J -G1KpbXK3e4QszKNw1yKHTZIgAg8rSMJW8iwsR+gGPPTBk9HlA7nej/Dne+HNPl0u -TgyEXMJ6DpSUDoE5RRkU54SZfEPAKqiJAh8EGAECAAkFAk1QmVcCGwwACgkQ5dmg -UDrTHQtkGhAAvT4gI9v8iWqVUe54r1n5Qdt+CJ9OVTDIya3d94aoOj/9RClrTwWc -uPn0HlNC4jtu4tWwqTb3iN/dR5K1DiW8ZCuGrapeNF9n9X8VJv3Ufi9bPLA0MsuK -PH2YJidi1DrjkLCho5oWTvOi7aoTUoCcL3Y5OdaFleBAZGvKyEQ0GkIKJnpS7te5 -PLaHTA+2fR5YPfa7Cwz0/1eWk4JJkpM4w1Mwv7b1llCRBhfs7p7wu1TUjFtyW6on -7DJQWNm+HDNVtWX8WKMqG1SdMUvwremn0PqfPCny6k20Y4FeqvJGCwz5RGx+j0ER -mFL4noV0HojWyq+FuaJwOaSjW46RAWfIcrz3FdDBS+yTdwn+9UReYYI8P7E948hE -doMQZSWRtZE3XrHFzdT2GhCvMfHkvqn0+wS/7/rjjPaNWbVywbpv961RSwWCEqPD -HiDn03aMxxdKQ2lMdZwFWmCzwyNPDlWWViowf7+0MK6DbijgiauYh1MZJp7qcvDq -MUHMHXFp7VtLzq7VBNFrAskQlehwRK3dk2Gw1+mQKZz72ztd7hgRJx/+kaqCN+XO -XHkRm7vFUnpodwLWBF9kNKhLsJ9WRLtYte0/l4d1c0NhmpNDwfi8K9Dz5ESIrSvn -jfiGZefgI4nXZAWLSSVTDiBewWx6jGKhc13bMQxHHGdVtvCUP4sTda4= -=s63N ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/3B921D09.txt b/getfedora.org/static/3B921D09.txt deleted file mode 100644 index 5bf962f..0000000 --- a/getfedora.org/static/3B921D09.txt +++ /dev/null @@ -1,55 +0,0 @@ -pub 4096R/3B921D09 2016-08-08 Fedora 26 Secondary (26) -sub 2048g/5F6EB130 2016-08-08 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -mQINBFeocJYBEAD0YKTqzt0QVgmHkRO0G8HpwdsNEzPANkDWe4KC1YnKTDjl4ojv -BfGc4bzLb+jXM4364DWGxArW6QJFW0DWI9DsK8+5TO+Zi9xtLi5BXKImw2cYh7HK -bCdNtBxT3xI1UVUuAkL8qbschWTUKgLYC1ywwjiFmjY7fEUpr3jzQrhYxazqN0Nv -R/lq9k3VAetXTRfOEOhUrIhrTRQnsK58rspF4nWqZTj6D8jkSGcQqs9D3/btbsx6 -9QkFKIIfxvfZxIHccaYfJhjgNU75b4Zl6NQvRm0jB8jpFqMTvG7zvwubRiCku0YS -T+jy5RiZyaL5Yue0RP8dW0xfsVdRE7zsNaTRuvwVOBfXIFuGj81q0JrO7G5HW2Km -o2byOeqidPyrlFtJv1PfByUFKIZ530HM4mnVH8193ZbravjJCpj1Ye07cq0yy0Nt -2rvEpi63EYCBOaOQ9SJaYf77SZlZj/r7W2Hnnn40RqfzRUS3EAIucx1KtqNly5B4 -zm56J8I9rPmqf/zfj+0/kGj8YRm8MP2+F7Se836PGF5d3zjazamcf0ORQmG67dwq -ddB+a5JhAxWl8OlFNsNBdRnu4qY3i6jK8jhI4U6NwQYEcWmnEeK5rbU20lEKPKla -+1bK5OlU02JINuS0iXyCMEYyLdheCRQVGXGADVgXy790nTb/IpGVmDj7lQARAQAB -tEBGZWRvcmEgMjYgU2Vjb25kYXJ5ICgyNikgPGZlZG9yYS0yNi1zZWNvbmRhcnlA -ZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMBAgAiBQJXqHCWAhsPBgsJCAcDAgYVCAIJ -CgsEFgIDAQIeAQIXgAAKCRBFYP1NO5IdCWGXD/wOG5fluN233GHQsZ1WQneDaq/z -i/GyyNelbR5TVJhmZ/ifi51EGx4/w6ZdWokmVQ6UejatdeQCQhlFlF1g9Ax/oYoE -bdJVmFRP7HzXqWcENXnCSXcpha3C1N8g12a1B3qew0gbuRbhwnnzcDUQSSrcefS1 -XpnhRmDUt7WanbWOWQ6kktYdAkfVd2/k/Y5nHUZp25mnjsNPbsffev6xTdUB4dVk -irBR4quMYwDXzzKKLz5E7pZB94C8WUCAYPOKM5pCuJR3L4pAjHGjUyrSSxAaCepf -iwJcCOQHMJY7CpuRqmhc1o3BaV8nO1HWMzbI78RChYshKCDY38Czh6SoeMJzaKUD -Asvz7tNhOl816s0dbtVw43Ngou7G7tOxmnI47AMNHBuBbA/qKRg6et96lWcjmJiS -1xks4FZFSEoA9BzH2G9o5LgYKKTRZIRPVZ61nsKa+as4E5oyDbXnUmnbanrfUvAL -L+vOYTEeFCB7qif2Ek58ujIQBLczmU+2S74pdQlu7kSYnrqNkkRxFOgFWt5udiOw -5R2vnUO2VAISDlUnkgyHp2SUnHAE2Q4StccvR9JeZUH9IuVioN/nAwzYTTKyOiZX -zipkxwznSjukiS4WPqdnLrTCNQ7WPpyygQDS/Z1DLt/+Rdxz4wkX76JjNVL+8hBF -07H2vzBvtkCoZXEQ17kCDQRXqHCWEAgA6UwG6HiPE0EY3UpaAJDQSibtS5zaId0H -8SXhdAk3ZVtzbskmI8FVuAyi6+Phl9Ps2RjVR88p9Uk6dV2QnRp8DpXQFeGfjMkf -okl5TmnGu5txXWMGdGeiAs/VlMzRuUZI05fJR6eeA8gn4wpBPmuXBgFre/3tuMxu -ahBLIhrLuThMMKZrfV42zaYN9waddnN+upM96aKQziNbmU7CSVGXK1wKtvbSF51B -XeO7w7KdTspKedjVLMhWrlUEAKmdeZDj+9slw4QXpqWMP8vmmIxbrYXm94r6IgYF -KYk1eZ2t8JbNdjFfRKGLKsPI2W9uH8+fI9/Xqw+mSwFMGqruBpmxZwADBQf/R2o8 -TOghFlNt90wrfP0XaumUP+aZLvb6ndjESTS7PaX1R1wsHtPaVDWnaTgfA66rrCp/ -66vmKf6uHlPeUx0RREaIJ56uKP3n0x8HDn1ZBba83NoriWdVqar6f3+UBoZ0u1GB -K/F8vG70Xj3x0dJ2psFP62yrDg5z+/TCM+o7EnUl5KYOpa3R25W6UEHoEexUIqxZ -p9+4FGH7+aO2LKbslEL3AVgraUBiFknJl7ikH3ZxljiFVigjBq/JN2F5CrmeAhdA -ZedF3lE/epQ+LSQ+TTN7ukGt2l37aJDTRGNHqe6KCy9KqIBr8XAaz9mJ34QF4hB/ -tDUSGQP5eg93ecG5PokCHwQYAQIACQUCV6hwlgIbDAAKCRBFYP1NO5IdCQHSEAC4 -g0BMaQu5qzLHeh/bFXtxT4vFucXLAenyLH+oIEo43crSUpjQiXzBitUc9sWMX7/m -jj8EWOGbIQNYZO712Ei7fPO7u/auZ7qIlVUKlEHZ+du1ORC5+khKrimgjP/ZIhTY -KHiIJD3BLs2rEGXdx3TQCYRIgRm066KKZ2gQy3YHngqipmOzvz9j4ctpmD6NabgX -3eWjUCzxofd3m67c6sQVKxUNQzujCgtaLIClYQEMO0E7Xq9auq9LOvD+40dLE63j -fYKSIvsQ+3qUmT0CEfk5K3GDYC30xQU4cvqCybOreSTQR0L/f/wUbTYt7Iyj/8eZ -wfi9wh2zVY2MOoe2zT6XIW2oKJFD9ka7IZsezMR4PBhEGCg69uWbPXbwIP3har1p -zIrwR1Uto9qCosupnkz3+ILQOiGxY5vtKXUr/0ulQ3gjZiLNL12m5MvnAUg4aoms -0W76wYUQG/NnccBzKE9hUAlgSak8n0gZPSRbG0wjOIcbE/arSpQ2k8WkwxkcUuHf -OnBq/2ME1njWkNp+h+F/ifZcwcBiRNZ+S8Y/kV2kh36pjkic4mCc4JjoNLxMic3J -pbf15Q8X0mgDbp1RVPtm4QTagq3kXRGjFpVaUfJF6ZdzPBm5qJ6F7ZX9p/av2zCp -Aw7ZjY7u8pfCZttaiaHYd6KYgPX5LEQK5QSTxy/JNA== -=P9ev ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/3C3359C4.txt b/getfedora.org/static/3C3359C4.txt deleted file mode 100644 index 4204fad..0000000 --- a/getfedora.org/static/3C3359C4.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/3C3359C4 2019-02-18 Fedora (31) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFxq3QMBEADUhGfCfP1ijiggBuVbR/pBDSWMC3TWbfC8pt7fhZkYrilzfWUM -fTsikPymSriScONXP6DNyZ5r7tgrIVdVrJvRIqIFRO0mufp9HyfWKDO//Ctyp7OQ -zYw6NVthO/aWpyFfJpj6s4iZsYGqf9gByV8brBB8v8jEsCtVOj1BU3bMbLkMsRI9 -+WiLjDYyvopqNBQuIe8ogxSxpYdbUz6+jxzfvhRoBzWdjITd//Gjd90kkrBOMWkO -LTqO133OD1WMT08G5NuQ4KhjYsVvSbBpfdkTcNuP8gBP9LxCQDc+e1eAhZ95g3qk -XLeKEK9j+F+wuG/OrEAxBsscCxXRUB38QH6CFe3UxGoSMnBi+jEhicudo+ItpFOy -7rPaYyRh4Pmu4QHcC83bNjp8NI6zTHrBmVuPqkxMn07GMAQav9ezBXj6umqTX4cU -dsJUavJrJ3u7rT0lhBdiGrQ9zPbL07u2Kn+OXPAC3dKSf7G8TvwNAdry9esGSpi3 -8aa1myQYVZvAlsIBkbN3fb1wvDJE5czVhzwQ77V2t66jxeg0o9/2OZVH3CozD2Zj -v28LHuW/jnQHtsQ0fUyQYRmHxNEVkW10GGM7fQwxzpxFFS1O/2XEnfMu7yBHZsgL -SojfUct0FhLhEN/g/IINX9ZCVrzK5/De27CNjYE1cgYD/lTmQ0SyjfKVwwARAQAB -tDFGZWRvcmEgKDMxKSA8ZmVkb3JhLTMxLXByaW1hcnlAZmVkb3JhcHJvamVjdC5v -cmc+iQI+BBMBAgAoAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAUCXGrkTQUJ -Es8P/QAKCRBQyzkLPDNZxBmDD/90IFwAfFcQq5ENl7/o2CYQ9k2adTHbV5RoIOWC -/o9I5/btn1y8WDhPOUNmsgbUqRqz6srlVplg+LkpIj67PVLDBwpVbCJC8o1fztd2 -MryVqdvu562WVhUorII+iW7nfqD0yv55nH9b/JR1qloUa8LpeKw84JgvxF5wVfyR -id1WjI0DBk2taFR4xCfU5Tb262fbdFj5iB9xskP7oNeS29+SfDjlnybtlFoqr9UA -nY1uvhBPkGmj45SJkpfP+L+kGYXVaUd29M/q/Pt46X1KDvr6Z0l8bSUEk3zfcNdj -uEhtHBqSy1UPPAikGX1Q5wGdu7R7+mv/ARqfI6OC44ipoOMNK1Aiu6+slbPYphwX -ighSz9yYuG0EdWt7akfKR0R04Kuej4LXLWcxTR4l8XDzThYgPP0g+z0XQJrAkVhi -SrzICeC3K1GPSiUtNAxSTL+qWWgwvQyAPNoPV/OYmY+wUxUnKCZpEWPkL79lh6CM -bJx/zlrOMzRumSzaOnKW9AOliviH4Rj89OmDifBEsQ0CewdHN9ly6g4ZFJJGYXJ5 -HTb5jdButTC3tDfvH8Z7dtXKdC4iqJCIxj698Xn8UjVefZQ2nbv5eXcZLfHtvbNB -TTv1vvBV4G7aiHKYRSj7HmxhLBZC8Y/nmFAemOoOYDpR5eUmPmSbFayoLfRsFXmC -HLs7cw== -=6hRW ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/429476B4.txt b/getfedora.org/static/429476B4.txt deleted file mode 100644 index e062bd4..0000000 --- a/getfedora.org/static/429476B4.txt +++ /dev/null @@ -1,30 +0,0 @@ -pub 4096R/429476B4 2018-02-17 Fedora 29 (29) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFqIZTcBEACjh0DKywPd0Hx9I4nGYsbUbqIU7TGZgxaT9jnVSRgkcdfRqt2C -P7EdtRbyqkMUKyL23CLwAz+YSmf9Ff9nxBSl8FiKUCNNWUYO3faEAZkZ5reDr6h6 -W4a0niBMWfVLqmYjpZmkcBqgLgl+2wVq9/E9Fq9SzDktzczUF7wwAWrsKW5rwEEq -+i8jk6FSUTNMqWZq69y7Dvox8k8QIxtou5dIL3Z8qQdkc/0ynTs4bdac94FsJBM6 -0qKSHP23MY7ppwOl7wttAsnaIzBaCD0UIM5qtfFBNFaYfeJ5kH1rf+NzgFjJ8y1D -xiZdEX2t4OyXvhuAQSvYyotDrJzCbusjXQYMYYqnfGcqMmTCkgGxYbdfVGbMs3x1 -mMObZWMQbb9HGN0KTBaFdwA7EnMBrCGy3I9WxngGIGATOPWkPPUUxlaI9jwxT3tq -bwYY5Kn2RhD4CZyj4VIaQvGdMaop01O78QVFHhdH24abqNuPrYqEDZ+aSTgnYFKJ -cpGSsRVL+Kw/x1wik8PYzpC9tNzU1LRCi9jsX0pk9gODSgbKLWryZEgZaIdcBcJD -4U3slDjdBeTDY8pJV9z9r7z+gFPAHLqStGKj2icbv80dMGTfgUm3HqWES/XXomX9 -ZWA1tV0ZlNOM8/IunmISz9MNpc3LChpcccffjrfvWBfokDKaXO9qCUgctwARAQAB -tCxGZWRvcmEgMjkgKDI5KSA8ZmVkb3JhLTI5QGZlZG9yYXByb2plY3Qub3JnPokC -OAQTAQIAIgUCWohlNwIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQogql -a0KUdrR7axAAluNHQ93T7u/yIQaTCs4uGb/jEg7qbm6hRx5nsqrdm3qKNqnyXK61 -nnPNoDJNk1WhZww4RdrvxCDOGyyNhGSejjvXM6RBDEOY/KmD6huPo8xN5i7JVG+E -2mlwTGe7HSg47d0wHydDNTRLQqT0VZnpkxRe3puQ4DNNHJZG1SsRl/Sf2VI1XyB/ -hHbFGbLS9KvH32lCIAAtt6dbGTRZC9gsGL6XR/6o7EU5fpj7U5rYiDTFaYqmqG21 -LZZV9xtqCoHcKElY7jX7Rfmk8Wn1G2zC2XR0LX7eVH7GBeXw6JbmLZjxSgd235zE -1lNSaSLMHOHMcgSHWoEC9ULzLYJuTagjK3cjk0VkKLocakRcsb9dtFcxgZGdQHfM -X7mD9epuJmqB4a6TOZoL/tiq28ORakUbjYfLz9ngnqd/pJkn9MNWcxy3yBtOdTYq -ce+61/XQk4cR2tH8V2eP7fL8YMboNkPPbcbKlcvKG/TgaS0tVrFMUmA1xmDihzf6 -gupAANlcMkYo0hm+z1hLvgqosp14oTocJeXLAFVw5dxnb9bmqjBy+77u/rqrY0Ek -LQd9XnXgowUQl0RSNXgcIIfEkVBipL/2YB+MFBmMQKcTDXX7lc/hl6W4BFmVj2KH -kPdZzUOJQVYfe90Rt3hfXHViUw118hkTaJhrCPVwkFbaUWscEA2OaFI= -=QzSY ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/4EBFC273.txt b/getfedora.org/static/4EBFC273.txt deleted file mode 100644 index ebffaf2..0000000 --- a/getfedora.org/static/4EBFC273.txt +++ /dev/null @@ -1,43 +0,0 @@ -pub 1024D/4EBFC273 2008-08-27 Fedora (10) -sub 4096g/C1527A5F 2008-08-27 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.9 (GNU/Linux) - -mQGiBEi12/MRBADL6fpbRejYViiVzY/Y0T6pmgChOykrsq1oc9mX9+ss1lZZit1z -DRrgvOYG67wnRQaskXnKulw3XoNEAT/OjCNzDwrS3gMbHaz+T9wQN5WeO52ihozp -ZLo/aNnIW9a7W5KxMyrmDobo5919wjiHXFXbVyH5kgm1B36ZG09/HlwtpwCgyW/Z -qczIsg9OhIrwYZRUJ8BHNdED/R6SFCF2p4AqMkpo6bO9+N5BLvTRPythuWyfTpOa -XGLPDzkDisIW72DDmCrVI4RQnLW5u0xko7L1o8zwOmmFg6C8HLeeHpfg40MVLDDJ -OtX1UTPmKms6eqKYWn15266y8Bga5QnVNGMRRPXK0YJhog8K4h7MV5i/B7F2Byhu -rcT2A/42Ikj3qoA7mxIEgU3DDrxboKWZghAIWaMn8xqIl0/fIMmx/x3k6lDakQRq -+E6kdTvrWxsKbu5ESTzCDIjhHyVIECLGJ+EbB+etIa3N1+ek3gKEBcDHBtvbdc57 -NcYCWvDvL3O/SNpkKetm4kzrvAqL0Q6mvmGjSY4odoIPczhSlbQmRmVkb3JhICgx -MCkgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9yZz6IYAQTEQIAIAUCSLXb8wIbAwYL -CQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEL8ib8xOv8JzaaEAnjrJTa3QCZr9C91r -MYJ2uNQvMQ5rAKCfqGK2Q2AVxK3pK1QHtc972g5gTrkEDQRItdvzEBAAz4E9yA4G -epLon5F70Ak4/OgpJqHvXFN2xMGazpExkh+3/bjil3/J6rucXtLutPP4kIIu6LgW -sbDF3HUafWpeOQI7YxlMwLXTfZ0Mevrsm4wEBSYoC8U4zygVyz2m6Rz2i62hbj/W -AYIayW2sxg7VwbFoJxjjZfw2d6jTNQW9EI3GVffYUN+V7BSeQw7Y6v18pxFUxCur -qOGXwNSUdUUmdh1h2O+CmvdSiYJApEU/fBHNioTDNVynTVN1ayobTs/5xANnpG+K -7Lhiz2HrY6tTv34DaDMwv2aMoDxq5BTfi+H7rTzXlpF5fAjHNGsXQIJjKhEgpkHo -hr+in0s6CsDpERpleS8FKIhjNwcGksoviVpEItnsHTOV0yOV5ZiuZpZ8M6ZS4Vf/ -JhvRCK2CeCkeyaAgxsGngN/QeTHE4e35m/dqUnBrUKRNkpcJ8jJO11eVNj0Xe/EG -Vcy345TvIUCYG6kr1wJJt0xJm1wDricUHnR2X5motCOT/k6BF0ucofvcy1Ou62+N -DKgI0E/o3BMo9XfPJVteheMOhwRMfNwmbFdr13rKk/GZyVeZmLwlFx1byH5r4J5T -4vE9JmgeM2bVu/TiMFlBszQM39xcE3SycjX5knBEglzad23kzyIerlv8RZUdQJ/L -qfmRXc+0x0H565YLwGC79XCKUp7dlGBYhL8ABAsP/1DrF/SzkNki1KWMeK8DP34q -GBDWtUIVTiMqHZclUylHRT3bp2Ae2/+xy7NAy/Y/G5aZqkAMvaqiG3ps5LDVJo+1 -WAQBOgnwrZtVn6FU6H59a4h79hKoFoBEI1gd9XKzzgA+RF4cEHJiuFQh2boxdr7/ -n64tzrS6HkUcD15wIcYoyl6iOHBfbazbyZifeKMu0USkrfzLRLPec2V3p9bXqg1W -h+SBCpD9uhSzBeKs636ipOL3WZ9UUMQMPNKyyFxx9cKcZY9aP0Leub2kvnFIZiG7 -ljbRP1dNJlhimTxTjZzfOicxu5MaSTyIlg9ZVEPXOmPwi/a8POP82pLZYZDi8Scx -zQFNi+22VdSrQkj6Jkan3GoqBOBoSv9iQ7EJp7wpMBRhoacW3wtJ4m0+cAR8IX9X -6DTklAU9zoZzdvg063GnjgPCi3Ohwl2jvM1NUcn4vdI5UUTd7DAPaysueJPqfFCg -CSgrOcCyfQL4vL0iRp82NNQtUS9ZdyUw8t6w/GuFnsymBSTqt2t1n+mhS7RAejaV -1QV/KmwijbaVh2LjTP0YzPWZcBy8XHzOsnuWufFmRTgFOUmWT9o82RSde6ubvnDN -WfWWGzriIpJd3JCBpkVb2aiEkU4958Ai36I/splnxOrAJZV/4ZIHHnGMwn23/DNh -gX4TCgPMjjjT0hmTfDpliEkEGBECAAkFAki12/MCGwwACgkQvyJvzE6/wnM+4wCe -KkKsIfsmCT0MpuYxHh4vRS/ix58AoLfjES8VpN+3ku9hC3QT97Fa/bK4 -=s6iX ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/57BBCCBA.txt b/getfedora.org/static/57BBCCBA.txt deleted file mode 100644 index b34966b..0000000 --- a/getfedora.org/static/57BBCCBA.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/57BBCCBA 2009-07-29 Fedora (12) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBEpvl68BEADHaID3riLF8dKEplScdHDoLvVSQA7w4KzRF3sC+4qmh6qxWxvb -blUlrtkN9jn049g7JEydtBmqmhJpixtq0vMeiHSyyGgl5B1DfQnNCUUJUM+SKdLN -1XjrsifYlYkpKiWWhStESwHAYeR+NS6ahPqHS2ZRtnSYsVGzr568YOMUqsfh7xOH -/nugJEY7dHh+BkRkQlG2Sq7w1aIq5cLtHskUhIWG5odUbkzplEvv+t0OFxQfRh47 -l+PknILo7ecyrL55SzD/+R8ANqMu3BeMocwCga7pSl6RfZjdvLC8p8HhJ5gwGzGj -3YxjLoga0lWNVIhsq/LpS9vPD2mVHsVlSLHsZSTSDr3zQf2nSlaxzZb9zWAW3cVR -EXy9Ly835b6HFTPqgkclkymV31eDI1BU1AT/5gp7lrzUNA7xbvtQy4VrML/gCO/I -4G7j5qOIZewlxEMHM1GvEPLPbnC4X3NmKmRogvxg9Sir7DHOq3uHDBQlBYi7FzBG -QvjgjgjpGcmPLTVuuhzGLr8XFH5Gk3kSji7mrDxAW3sD/16ZQ5xzT8HEx4L+bdCw -R+i2SpOvKLt2DPeFykAFnpkgHwkqCYtZhzT8QZ/9JR9UvRqPNskkB+41R/jgMw4+ -77dXYNdiL7502vpCvPqaqRuf0kWag9bq1ZBwsqUDz7FV1gvH0Tv+sugBHQARAQAB -tCZGZWRvcmEgKDEyKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCSm+XrwIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEJ0cw0hXu8y6N2QP -/R9wYh4bHYIUOv8ysc188PKXgvHFLGTIJOigqgIFfIl4FP92NlxorVLxQ5M59KWR -DACsBwKNF4pVXTlULJQc6Mq3noNdFPyvYRfDPXUdOKPX3xNy0NHiuHPuXk8c7T6W -yaBlZBy5oKaBq1LdoIsaw1vMnyd3Hdo/nh1fcZ19sqGtLwV5t4dmzOSACTi1Fpn+ -/mNKi1xrBwE7tvFpE08zW3uYTK3RKP300mRpcRqG66IVVuHdhRT6jTteyL/vHaw4 -jVyUg040JbJ1itZaqUcLagkSDRw04D1PxllVGr4laHlBEjdoqKwZV5PvMs6AE+zx -GyFuFtRvAiOPO62g35uZBncGGZaTC+WwXWEaPkjPHxOFVTqemVamL11vEUDfSQqv -ui9Ul24E06mb5AsHsyiptyrmUDbbpz6Wyo60kaMWSEISoiTGAIFMSimfLVkQLYAQ -L5Q5AM/rnIHibd6PGFD0Twv7DMp429rw1ItosNRPA6G/BVi0FadN0OoPF5RBJU7z -4xt0jy5mDHfX2Fc2xSbZPKV9lrvJd8KYdRXCIDwH9e0Dvlf7pw4lvxDvh1WtSbj2 -eNaJlTIksj/Qb3lbdMrZ72GNnIJF1gRkzjFg9ICaGrhMHQQ8phjwC4ME1h6iEVAJ -5InJW4stZl1Bdl1NdxvQIbboVmtruN2VhgKKbXEFk1f+ -=f8U5 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/64DAB85D.txt b/getfedora.org/static/64DAB85D.txt deleted file mode 100644 index 852e892..0000000 --- a/getfedora.org/static/64DAB85D.txt +++ /dev/null @@ -1,32 +0,0 @@ -pub 4096R/64DAB85D 2016-09-09 Fedora 26 Primary (26) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -mQINBFfTPiIBEACnRl8tUymlDOBNJWjtICofXNyM4qt2qfGTme3YZ0ZVOay55pK6 -1OLiyNLXyJfDH9d2U6dZn5UYLNdE3QXRVua5GXlSituY0+pzs7n9doW/U8kdhm9a -zOfyR1Wh/u/FHUmiXUvuwLVzqee7lSU3Ry1voDzPIyM/3/eXDa4wAkbYuestYV2F -G2VqcMgDIEudYlkz6N1OigMWvkvYXFHVC1A55ydHenWffQzQaPpGuJLA61ARZ5Cu -X46xgOCPc+aSvAm/D0cmOS7xhZcUqs1A5uGtViZqsRt59Bp0HVNxftfBCO/rQx+9 -FrV1vYXkbTdzG3unlVCJxxC2dW2W6hb3SNgPbE5fgiG9twvVU+3GsFUwARclRWiZ -HjbWdjlRTkRySzkkdnXalJo3G4UAEDfkvujM2dB4Dt6gVkCPvSKVpK6HTtBdHmDO -scYfazX/j86somO9npHSrb11tYaLbx2PYfEvw6F7rsxr78/GBjzPnKkK3suXxDlS -8q7tT1FYV89EzjME5+ThJOyPxyXHKQQwozIXcB/BUfyWGlfFFh8baD+DA8lNgQvl -/TVFvW6bUV6ll5JoVJJhC87EACL7mlo6AQtwCivUEPxusVXM6u53UKbsc4gVdkZd -WpUyT2YsgKK05/eVDIkMLHXb3efVbJ6NCj88Fq6hYB7+Y5MRbRFJpvS4DQARAQAB -tDxGZWRvcmEgMjYgUHJpbWFyeSAoMjYpIDxmZWRvcmEtMjYtcHJpbWFyeUBmZWRv -cmFwcm9qZWN0Lm9yZz6JAjgEEwECACIFAlfTPiICGw8GCwkIBwMCBhUIAgkKCwQW -AgMBAh4BAheAAAoJEIEqa0tk2rhdFk8P/1WZFEEBfUr9ywRxeVAwiKx9Ggzf8m61 -p98spnUGj8N53bKwguKnMqAUtm9/XQPRGYRfqKKuKF/4AySCOmqFP86zHThnbFcb -fMyiJOxBN5N/5dhUxTkZG1M51vFPQx53dnea3w7ypJekTwfEna46PKUD7dTV3HJg -d2YOojD9mxup0iAmi7/3mi0cHwTCZS9FF/A4eBWjuEd4OM3KzPF7HBdY37a1IBLR -k7wruMEGSq6EXcoeqG2sMmU7RnEeQxy3WqMYdRdzUjbfBN7mCAcuv2yKB1FFW4/v -PhP7ObpCCLiaL46APdGFHZ30EC4oaeqSygJ8+zAIFK40t/a0iNNf8ZKKeeuasinr -qNJAep/WoVjIpx/LlF9vw522fhYXJ75LYLBCQNke/4rQ1Rl29io2Dg29aPrEwFPj -+7zDztdvaGmu5wLPvsC+w5pyqOT2LPC19y3D7T+KfXp0gEwyZedviDwZdIXz1PX1 -IMytlwRXlrhkp/2WzJvAkJCmRSb8QsxY9Y2A4rfqrNCk6kgjc+3pXNdxumaXEp33 -pjm+z61Qrg2XXFHUhQyRiBnEtyo2Hj3tJQdrPxwGIgtKFZCv+oAwewnMw9TFycI6 -rYEfS4wdAIOGoSF/PL9Eq2xoUJQw8QFCrURm7sfS0/VmvXoSjqzZLeWI4e+JvId0 -QFFBR5ZKOqzo -=DGPs ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/6DF2196F.txt b/getfedora.org/static/6DF2196F.txt deleted file mode 100644 index 895f76f..0000000 --- a/getfedora.org/static/6DF2196F.txt +++ /dev/null @@ -1,43 +0,0 @@ -pub 1024D/6DF2196F 2008-08-27 Fedora (8 and 9) -sub 4096g/9E198F60 2008-08-27 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.9 (GNU/Linux) - -mQGiBEi11ZYRBACjAKCM0ckAnqEZWP/z96Bb4c6WH252/2JJiC8BWw20hBhJ0CT1 -Jzfg6rhpFsB1Hv8/yFbV2bMKzHP5QySMkJ7Jp/mlDMwj0mx5dGoxshSED40E4b1h -ZRkuvyVKKn4IKE9vIhl1nhudwSIjsoYD3wH2wbE2CHVg/kB4vuBaP5WPSwCgndSE -sAssoEObir4Ndq/gep6jFjEEAI53sM8u2PQ9inKNXrkuw+GCUMXChk/zhZhmdyDx -cySIgy17X17/jF+TnXsCSXTo87Oz9X4BAk+fzHPKqTLm0/RjjuQd1DwNxsVkPbQJ -QqnIFwfnSZmVcfbZ0u/KLaSUPwi3PjzzBI4L8fsTwspZmpuipRM/pCh1tbOo3Lbq -WqSyA/9wlKJ11Ycvr/yZYlbqipKC4hFJnu4y/DD2xwBMNT5vkQeQNRlLh8smqmMf -FNoCUPwGSiuYG2wP1OLX6EG6uCVStjcvWvONtCKgG4TdsfPv4tMPO1dtnK97CVjz -10HJ5qC5WxLNqQY5U5jRnOyzq4yE3cakXk5shLsT/ch5lffPErQrRmVkb3JhICg4 -IGFuZCA5KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPohgBBMRAgAgBQJItdWW -AhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQYq7D3G3yGW8mgACfaXJGS96k -+ggwwo0A4GC7iH6T1awAn12SDBWY8X1wq45trdHGRLig68C0uQQNBEi11ZYQEADB -hyS3+Fgz+qLPlYe8Ic47435mwDzUeCFnNO+yA3c1OD1PE5OVi4Fco/pHUfMkMSFo -p0FM6iCkudzGQKWgmlJ8TTsMK20VAXTcUBzksOx9WJBSIHVGnAVSuMb+S5Rclma1 -tiEbpNRkEFcUKRz85XDD5s072F1tY31yOObptzFbRi5m8fZvJXlFNkmkp/si70SN -ZcyMFwXEiPDPmnauAkZfD+rJ7c19C/MlQ0HI3IATxp3DfCCnN7FcTRPvieFUYoq/ -z/cjOQioliAhZE0zMJtiY+YEuxL65d/zj536kMmO6v9d31n1GPGD5XS3HGK2jHbw -MCDKzGVJTFpT7K3jb2ZJ7H7MRJ+bbEgPBMZiFiUml+wbTsEempLrK2fkFxqIfrpl -DuGxgBVqyydfC/nnaiBR6pjeKV2veNbAL6f+G3SaQ0LykreiZB/CDfLFJQBE7M6T -5wGIF1WPCmsekkQyPUUbWpxtdmECepOAOETgGpzoySyNf0V4WRTfHLXYRYbplPzD -qPdRSba5kmrhmFBXimHrybvjH8n4Z+s33dbJigjv1L/XDhxL1QZfUBZr+u6LNDKQ -BNdb/1o7op1kcJ1dPqd5nNAMwbvAkTEnvsdPPuBg7rAju3lV5i7ZbMRVHwuhHjBt -BMBcZt5PBr9IianAqxE6eGJyWkSuY7i2Ig/1+pcvBwADBQ/+IOXV47IbdrfgUgv9 -MYlnlk4GBUz1lIRoZzyzsRiRsWNqN8BNtnZe1IGgc/5G3sIOLYJ+XNSAOphLkLxb -WXsNDkRt64Z+ZmjOlqW34TxyEyzeJLZC8cL2Zu8U61oPT27LFe929AJD1CdzeEZT -qd2gfxm7JEw2Vxb76f299qhe/ubgd6VaG+WaNBx9yFdUNAB/oK3arGL0LxUR5j87 -CAafpqjNQteZmd6yJ5dJAkwlJ1RXJaOMOdE0V/ARsV38cxNce31dazbmf01QGhxW -IZBmAdoqeoykCQ/rIwN7WakwxHf/lz522qa0E4RQ8niKktdHK26goQ3H6nQcbS6i -DgHckODOm3ZO4NTwRPM0UhFw663cQt289xdODJWCdb4P17AV3oqCUJBf82PbHIhD -I5fZTp2Bgn2Gu2WseNqQJQCq+S2uXUxxqMiBWaOk8+8i9aMdBZkTHn8KIfhrdSW3 -gbpyIWITDY5KQqJy9AQk3NfTkavMZy09q5mUD5Tiw+X75Taj8IbZJMuO2AsEUvFX -rLBuY7FyLX0gyq6no44Enhsq5H9/1yx1EIAx1pgYyPW+0IIPdGHFW33yKHfbo8wf -2MITxZpd3eaNifBfO3iGOAOJAFYAO7wXeHHX43Syyj5KGlOAdaX7Dp4gU8nGTeFi -2B7oYh0vSvB7F/6Tu/mHilzenzeISQQYEQIACQUCSLXVlgIbDAAKCRBirsPcbfIZ -b+s6AJ9MxzebTDyCoSGb17gmU23fAk72XwCgmdn5nV35GD8LYcojs8O7HXPfLrk= -=Bp6s ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/81B46521.txt b/getfedora.org/static/81B46521.txt deleted file mode 100644 index 93a5421..0000000 --- a/getfedora.org/static/81B46521.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/81B46521 2015-07-25 Fedora (24) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -mQINBFWzypoBEADEiE8DQT5k/RPTTsmGKFZ6A0gMH0CH+BY0CLWCMFgS3UnXvUkW -LJb0y7v/4cdA4ir0CwQIeQmCOD5uwUtgy/nMUUiXqEiKslbvqz+a+fn1S4P3RPEE -FtG/rrujaY6Y4dSdJfmczHr2X8UUjN+uNwHvWMkE2PKmYUJ9B3ezYSGEBDr+fmxr -WE923E4wBu3W0EBcwr8R/YuRMW2atBtq2YJoGWEM5Ev7H5RGR4Ah9R1YG+pfn1m0 -TfFfvAqNQCKGjeIfM6gVJWdcay4qyzla6cpTZWxa86OaWNFXeRrUXRSPTJVMUp2D -29CHjJwMeBqTKGDKmbISzLPprCCNvvg2S9fwZrYXWekB2ktvce2Q248XEdpjbT9H -FXFA4Fmbzs0x/OuhII6qnpgbbJJHqcigkK7emJ5v9Fsc9k3wrhSt+wO68IKuCtUx -bfFiFAS9UcLztaFGE1aswojGfncBP8Xq6+VeMd1RSKcRJsWlyvSVQJ+TuHV0TuiC -vqW5HIXfycy2H6LC3qJVLFAEa+V8lAYKhNFtrK4f+QJUr4+kAblcLU3Fuu4D8uC0 -PI6TICMfXYMrQqjbrZ6T8ZorJLu3rDxHlcG0Z/UVt7DBS3CM8N5tYwK4va95UMcr -DpMpTyYIADkgxJq03Q65Swx9dlXzY+yKVs6x1AvwrB2G9jeggXyV0kyvOQARAQAB -tDFGZWRvcmEgKDI0KSA8ZmVkb3JhLTI0LXByaW1hcnlAZmVkb3JhcHJvamVjdC5v -cmc+iQI4BBMBAgAiBQJVs8qaAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK -CRBzvemDgbRlIfBuEAC0WSAPr3+KGINSqAUY73ubxsOl1vdwcxgG+INsc7GmvZLk -xUA2zbpY+7hWz97047JfEyJIMK6QsQtZX/tuKy5pUQcoWO1EhyCRdgVd5r0eJYpq -1zEpEeqRMl9QQ7c5R8mAOW0Vrb8Qe3cvvuralUXncAov+qa5WsyQW6fDroe9nbfk -IiH5Z5z6uohU0huAuKBB83Q281GzSDVgtIvFNxlc5Ic+Q8/13nZVd0Knszc7NRk4 -kaJuSb13KNxGlDWHhSb9j5Fb7iGWIMIMdHF3IAsUSEf/ZP+Ro9pu6chjyYR8pHGG -qboX0CWgPijzpreQH6mRMZ6ZYT2u+m45BFZXauBdGI6RcsWyxsRG8lRq8WX6yw0G -nJS9MHfJY3UGBhcQSuslvDHkVM+Lv59IINcumOGJxt8b2qcUBHBq1q/zziNv1wX1 -PAWBqE7j/S3/zmgVpWejONMjeEwBc+uEQezcVgAVFw+BqsnbVb3e4YUkyutEhsOu -k36NVV2KB3bsIsx4vryN61bLeZTpN6QXktCFkdM/NyekzMj65IUJg6Ewk9htSjXc -vqHsgtmvEARcKj3c/kP74L7tXgc/o93VIB/hzIMbkGnQcPLThVp/Ddcq823sgZCF -DhsiykA32LZQPxKWq0phobDArxldMPLtywTlnA5Ckd5mXHTB7WJ0EGJhw2J2ig== -=LPDE ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/873529B8.txt b/getfedora.org/static/873529B8.txt deleted file mode 100644 index 793015e..0000000 --- a/getfedora.org/static/873529B8.txt +++ /dev/null @@ -1,55 +0,0 @@ -pub 4096R/873529B8 2015-02-17 Fedora Secondary (23) -sub 2048g/41F772F6 2015-02-17 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFTjhv8BEADCE0C8AUDWIBiUKPIXFlv+KFRsoKRmlgsSNqOZOz2J6ZRSBzYK -+zmERdX+cNTCOFB67yK2XjbRNOEAdes3kHTHDc7i3a620YNNTnG6QFxoVRq/EJwh -JKeSYNqWe/lFsh94l6F+zXZXvlGFSw20O1CoEBoB53axRnm0KPFXP7Gx4ia+IQlk -YFtUOQyqZF+3Mmh3G2DqBpy3N4HDJ0pq73s3AyLQwDzDdXMaLdXiSRl/E/lS3Vm0 -BND0dp6FsSmeiAjwSv7lOn+MxyKX5ECLyI0X5f2j9Ov6cBWkpM2vDGt+Zojww2bI -1LbBtbZ4F2AaWi/ro1ZlGSbbjK+oUMdoMBTU51PfCn1BeIT3llTHbqM5ggbKr+0+ -VP8y5LrmdQHpIYUgKTKbtPEinMFbZxiKTe3qQpXqmiKouvhqrV06Hik/dyFzMeQ3 -P4O0tAmvEodTkcRMBxCQQMo917ELSnmIpoEXOE1ssdVHyFN3td7dU02VgND32rEi -V2x73FFLz7n3x7nxEfFHLfzooykZeZBTJOaLJxfbVSkOxi2MyMcGMLqHjZUC6Q7x -r9BzSghOQBxa59hM2eNblIOVA4XgDOL8kRRhwGv/dmswm6A7nLthuPF7EK24b2Sw -E04Qz9gb+riusE0r7IsoGSSujj2vOlw0tMgxfEYqpB78SC/JrvkkOXvlbwARAQAB -tD1GZWRvcmEgU2Vjb25kYXJ5ICgyMykgPGZlZG9yYS0yMy1zZWNvbmRhcnlAZmVk -b3JhcHJvamVjdC5vcmc+iQI4BBMBAgAiBQJU44b/AhsPBgsJCAcDAgYVCAIJCgsE -FgIDAQIeAQIXgAAKCRC0u4cchzUpuIsMD/9eI7x9wzL6E3fo0mYE7azAH6VpkTEB -+qxpVmFyvaW50iZUEGmr5sAo0yAGoZV+2LTvaTdbT0BsX8q26qKfarv39Gg0WHrz -6Nm0ki3DkoFW0JQ4A6Pa8avsKk5V5O6PxcBj6Se3fgnu1T9dUWMwtD5LW68tiJ4n -o8xBdihmuMBvyLxCoG4w+dYzB08iw4B4dyAddYWcjOID2wevSdzfpvLvd98R2xDa -qQsI4Lk/mhS5OtCu8w3cRwNICS7bSKdmr0hLXvh3J9tFxDLD5828TNlmswGioJN6 -1dh48n6VsbB4kj7BYgvySyMP3PPe4/Q1x9/OXbCJdFBfbi0LYbQpYcfL6OZnqxon -4HqVzP4Km86RW/47zfbGPLaqmHqPg920ImlLQNLQHWqyOXtGP4LnhF6IoZxzOti2 -3AoKVziua0MuOccxcOeYiBMq7oHE1At0bGZHXMLG4Vw37TMyVCRjXO9iwbWRWuYH -OEFF7Vr8f0NIqVpsgEOdbnYGQK/xfNaupkmwDg5eRBE4jamCu+IjGdzQfFvpcCQF -ilfdJPXjLcpLzVvKY3dR3USXZhl+M6/cuVPyQt2isO5xPKe6oQB2vMIE5Te28VO+ -c3WOIZhQFffgrJo3AJ6Y88rcvwOsZOUuEl+DO5+RN44J/ax2cT/AS32FFbzIK7kx -m6XvNfYQjerhDLkCDQRU44b/EAgAqZhBIofPqOcVkFsbqYjFtdYwQp8O0reoSomf -oL3yYUhP/JS1L9F5aWO+Hv3X0Xz0fWMfSnHg7pFBtyf8RrIGaDtxeQxeX1HiZOF9 -eF/kKtS8r3XHx/YfRnRYqa2kv15moEHzXV5KMdSrh8qUQ4H9PR/xQZZ6GxG+WUwq -2VZhXc4tubtpSVY5qTlxdVzoItG9V5mQyZEDV7CfJgXNYoR5cbeHCNC2AswDJt3T -64e8HPHAOgMFtCN2ex/F2r7eZsnkKCcg2xEwubPTrcfYXCF717bpSmsBKENOYk8r -8QKSejzxuUZgYafDQApFpiFqZuF/aAcePjtgZ+hdct+jSM5rbwADBQgAlOQ6Y8L1 -5Eg2foeOupugnZi+ccM9pye8Ccvv8WwyXzVfuHdyQCx3STNPbv5XTyc12tQLsCWM -UjXJ8IeQpDp6+02RQzPSw9t33haRZq228CIFqmE/9Hq9LjMgVvIUM2E0D1bjoNOu -3axAXeneKdruEPoa5A0Z4A4pV2vhUeihIIUne0fsgiA4XCMiIsBBWwWBlPQ+Ovxm -WeNuaiOV+GHO65UfcZVps/9aam2CKtCGkAS82hcrIbMDm8Qnk46WZTfhhnRVljBA -erNTdC1oFHTipzP8qG9Ypx6ZsqyMO3LnTaGbPKdWGPC8tM3pDRYd4xeoBXPVleYX -ZYqyRrcPOho4AIkCHwQYAQIACQUCVOOG/wIbDAAKCRC0u4cchzUpuCPGEACQWJBB -91ziVDqX3dtlzZT4cj/3nHGXIQirpechfYqIrrQK5y9JnNovGIzlaw0jN6JSF/h4 -Ub5Wy4V1QEvLWVoSiRWp2dE7ZVG2d3nVwclw84zedVIcOCryFlzspk0Y7nbcPgtO -o6UEX2ugU9UZywSuxmPiuiLYuLHDUNtK2RGGO4S1OmHXJ2zPG8P2jp/1+g18YNht -pf3viIRSWd87+1ARyMh6FVmA+R6mAFRMA8nEiPR15ajiLDrJxCEYC3jkSo+Ra3zG -/ACG7SNVVtjZ45PcE8s6ObTNqQljEGOUslqz1ZjqYT9uVpFfUozDJAYEL5wUTGd9 -Dui5KJrhliBPmaXTUvyBJPd4xdyu1ucf0udKH0U6n3epCcr12v5dqZlnlDakJJTx -lX8GTmKK4O4bb4SqJJpIgHHhYE+SuH2nQIYXhndIz2lFgXJaVRBFtKq4A+LhrOoG -YirGVNgowQIYamIjdhCcXnGX8ZexQta/7ZigQvRVqIslGK4jI3yuueoGpIi+d86k -33I11sV4Q+gkpdX9ozaj2up7Ren5uqBWX36zfsHA3G5oek+o3hzlbtOzDZGm6MFM -BR7mEDXRvXhH9ybO8gr35K+P3RDlCKr96BUG2XnVJuavTyPcIU0s/+G2KLvYvyqL -7zAN3RLSVZjE6fRnT7xTEvFClgVCXk9gADjIPQ== -=r6c1 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/8E1431D5.txt b/getfedora.org/static/8E1431D5.txt deleted file mode 100644 index 27c1198..0000000 --- a/getfedora.org/static/8E1431D5.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/8E1431D5 2014-07-09 Fedora (22) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFO8uscBEADWHjOQeufsWIPFwX/43vHXQb95U39CS2o/uw56hp+M87RWxTfY -b+FtjYdQ4vKCEvrgdGCLFrW74YkdaTVKd/3C0aQolEzhrgrHOCyPw3DxC2dwnHMe -8z9uVxDTmitzCtIAR2eqeanNZIQzYDwcgzmXoxF2n/nZHQB2iPQj/QCXYVClddRk -+8MXC3YHtfGUmWeXl3840mSxMo6F48KNhzg0OzissHgU0xyfCWUYr1HYc4Q8aEVc -2N99ahxTPdWc7KmoYbHHlIlP13zCixkxelKcb7+phJ0k0jn0lVaKigN3UjKRt3C/ -WeLnOvdpQZIk0NP1mZ1wqNfiEW3lyymogr1qZTUUviG6xKXa4swaKKb2sSEddENJ -5S0YjFzT1l5jih3aLxQepn/HQ0AHHwAVPWDy2RaRh9pOtUbvF5kQTElV0YjGPaVc -JyGjkTCUPBjfvUG+bh6pvznQ1z85s0JssP0j3a20EzcYahnMhM7l+VSw0OP0O2dX -NWlIjfilaujvNybXY2r3FXopbH46RMuoOlADTZo6iLgKq64hLKpGIAn5koxTSs8R -1akOa4FlPqY+PMhGKHYQPXxQIr4wtrMNJ+Vp4hdKz1SWkoTWsKgycWDW+7Oswwph -VCDd0PWy2RpFeTZtXu8QUvxL3ZKCd9T8UNhqZ8TQfSKvuncgE/tQhMXgzQARAQAB -tCZGZWRvcmEgKDIyKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCOAQTAQIA -IgUCU7y6xwIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQEa3AlI4UMdUu -pBAA1FVUUGWxOxF1MsFjgz7c7fx7rKg8Uj8ep+pVAo8klqGE8TPIRlWiuL/JEbPJ -Y3Aiv6agGVhCG8UrTzoei/aLbDA4WAUgHRANAbgqLd+HldA6dGXDJPBnci9Aze2X -w2luyWPNUa5SHAETy80XHjvXagjZApPWlTePpZB7aKsrc2arpuPxUVWlGKavja6a -2SY5aO4vqnB3rx3q6dfymcZ36TUcOc1H3yKpZ2keRxez6lLVi/DXDZU+D8q2Irjg -4gfqXvqVnoof27MawCA6bqNIHAz5f167BQjXqDtlNcIpO7cDEDuQTHQa4dNFxhto -9Rd3czWFIBTJkoGFeuYMLqAK+VbG2lhLmLs9sDf3gF5smlkadmzCz2VIIlLmI+Ot -F4Bv/lCJSIDrJua1s4xE+yC7hrCgQQ9I/ElF0r5K8LGSJgnZi2xnmSb9WDjTcIGP -I4P298v+ufY7vjJtIf5w3izS2/lPuqOonX6F69AUhyloPDO4XBVHmy0FOpuLePPD -6huG0cXq6omESVg0XERdmrowvDSjdrI6+m95DG/98KmUCDawq9jxjjc/8iO2BXDl -QpwANPpgEOduaWZiO6XAGHETuUOc66txDrVog08jTJFQOwXW3qa9loj44eZB/U50 -gz+KtT56HkLzsFd0X906Kr+5iiIbCz2mooEmcjfQgEW6nYc= -=yhf1 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/95A43F54.txt b/getfedora.org/static/95A43F54.txt deleted file mode 100644 index e8f1868..0000000 --- a/getfedora.org/static/95A43F54.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/95A43F54 2013-11-14 Fedora (21) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFKEQVoBEADOb9mKZZtTIVRMMejO9dco+dsv6L2ZvnlidMVaudoD7pN9hl35 -xUZFwQxzATy2iCoFY92WU1zIKxCg9fa0gS9jGGl9rOI/1uQm+i/KxkzJCKW0CYpA -QVNNYHewQa7JHuTYbaN+kWEBGG0RWJw6BN2NxR3zDkLT2tgcf0zBobeUMi6XwFg4 -jikJ/vi84MEX4Gky/OtVXuzk0fGnP7xYPYfBkfG5FbMj3UxbfAAn1Sr9PxIFdCxP -c06h9kkO+gJPD7Cis1pNg9HWpssIEHIk0ZaL0sssMSpSsgP0f44UpKVCq0+JDJmM -EEu2KfeV9r2dEiEude+Gg4U3rbUh2PTZpQKKwPyggQwk6nPHbrqrr9zBIH5iyYuU -vdTVO7YrDqYK5o3WhqKYG19oNbtCziNuC9x8RLFkerr0amQjy1dZsofGYSLjZ8Er -3PgtUMunH4Y7O6FbRljniqYoQl8GDMaxhptvrOY+NqRAQiRLzpT6BB3nZhO9iSk9 -Lvb9hwjMFsN5xh2wCxYV+XNjnMSO+LZisJimKhyMVhimcYK1P0sU49RcglmS2mhP -OGb14pH+B94lMve/kQu4unnhKhtkPA0mOyeH8BGl63vvEbJtMzpMqbHvzr60h8PA -H7EsAsYJZp4Xa+F1wBRBJ3xKaUTQ7r7mmpFsdgzlI2wjNgLbyEV4YSNVjwARAQAB -tCZGZWRvcmEgKDIxKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCOAQTAQIA -IgUCUoRBWgIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQia1Oh5WkP1S+ -rQ//V5WOPjl0UjEgRYsjwm6LGZe8/P4muXdKX1OuRF+MLZxW1Pbr43zjvfY9tZlD -v4QpI5uECX5To9phrOXI8ghFpI4aQbRe2enk4dksgdhzdBW0JgM3JRf8F+tPLKEF -kB2/tGqi/irp+Hij/tiHwUZjx8qKGbF0r2bxAkSS5qkmalTs6PwcWwEN4a6sKPgw -iVGL2VRM46YoNDORwH7HYeODbJtyJyX3NvcluNKf/D3OZFaNYH+nUISlaPAbC5HJ -sVmZD9vm2E2ypErbZzrY3N8PRgHuIrDmO+LmksWteofpWZO84lyuvgYgXPy8Q3Ls -+p0zfE5zv8EbX4WG+l1SF7hVdPC7UEPUuHmlm81Fi69tSvwO+N4PrDU094VHT+UQ -rKmtSGDOfSx6FvrEqMakiEyBgKNwhsVJbi6/LXHMBImbSN3tOxSMBxGEi2cSn/KF -LRukmMoEw4PHZK+gPpwsP1cTfxezs/aH/PMBaPUgg1qCu9uNNFmEs3d5LLSee9RM -U+gwECX+D44vqJUAT7xM1A4yij3rPF2RegOmNhu5wg4zNSGKoVV8QsMOKrjIZHmG -pFVvYFP4OxLEwh6OYZj9qfaw445ryqfcxSNzZ3m+VSwHuZ049v7u8fndZ8TREVXx -hdjPHxjtaiJ1R0Zb4ZvycUcDLl2Xc1CRJAMVvFJcg1SNrGs= -=xtMc ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/97A1071F.txt b/getfedora.org/static/97A1071F.txt deleted file mode 100644 index a285fc2..0000000 --- a/getfedora.org/static/97A1071F.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/97A1071F 2010-07-23 Fedora (14) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBExJ1v4BEACnj/1xlkAkz2/1a6fOS4/WFHui2yWzE3deHAAkPpLnOqR487xd -kulaGM982Np1HnZ2xDhP7cKOumI7P0dwzHW2KVMEzyYbivvJyP/XrLtc2tfzuA3+ -tJRSwIH4YTkCFkRb/aj81+HTI0olulq0WHx9tBTxOSA4PvdRGDHetkpT4loNGQoB -2SWul2BLDxKmv0HP9CDa83AOt0UG00ecWQkJM2PYqR6wLfcOIKAZ8EGnJfQnj8iD -1BzH2hsP08tD4NKbSPchcRlTqTtohHQIE2aT3LvzyJ/TTeK8x05YlPXQN3a1A2t1 -jEppn/7uoWdJCUjZpVzS1VcTJvK2uPjMHlUsmtl5o36NoGxKSlZDoNdqxcOVjTWA -C9fHVqcEBTeehGMi6nLtMopYVbmYfZT8XCkHPg1/oecDffnRNCMi4AGJBRAt9+py -oE9wy5G6dOQSFfynAIdioDF5oY+yUtHjPs036+InXHh1YnHIU1LhJdlZUlowmhqT -mTSmHjD9f9+qMh+yfmdGMxhA0dxyJg/NYvZdp3p3pq3apps5jgm3m9WGpBmGkhLN -hjrcTgw6INFs5iAuLxV2fRQ4NMoBO8yhSOTgXBlUwLW9G5MJxzxMea/mgEV4fGr7 -oteg/h/d8qVelV+Zh46EFEwEWbeHNiiM0HRIEdd0U5tYmk9h56COGowKuQARAQAB -tCZGZWRvcmEgKDE0KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCTEnW/gIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEEIcrduXoQcfhfEP -/jbcG3dgeSZ2CO4gzulkAQZVMMKKMHSOtoNMfKIi2ib7h6A2W3hA2JLfPlDUObvX -cmZ4XVIXmBr7sxgWwf4W53S9S3OKgBseI0F/nnZYS/iKEgCg9GRzUOi9j9l0rviR -yn3OmHCSr6R8ZAqCAnQBeGSP/rzdtaMf/HCxuOX0MsZASpmhQHxXDUJdhNT7aTUU -JC4fOvCRYaRocZBQf8yexQnCPeoL65YusSq0D8+2Cg+HUX72vckAH3BoYYIsQZ6h -/nPGHMru2nafF2deL0omTbtjJW5OUczJcEY/15MPrD55jyuZLnWwAQzjz0uMcaVi -h9zwzy1EGB06OxpwKDipH7wjohIFKgJ1TSakiEVU14CzqJ2afvS8tVPDxIsuXgr+ -UvBmvatvRslyfdySQoHf8fqJiSYHpWhjw4S1+VU5NBSk1oTPqHobcEKTDXb9DdLI -XMUpkOm+O6kVZ0VX9fFbJbaKlq/fT2bG6HzM8icDt3lnwm9eAPztr6f2nUfy/mqK -iKYWPmRIiU14zc50vjVdDxx80DNZHUE/chz0WBeUSLzw8NQpY26o02LrPee2bQ88 -gwMcKde0lzJbwfND0JR58+tVEJIglxWn5I9JmYdJ9DYJIJlqXJv2CmDqVXUEMlez -NRAnpOmXzGuNYYlBj3ZI+Zyk18AuA29xhWWud2zlw3a0 -=Zk4V ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/9DB62FB1.txt b/getfedora.org/static/9DB62FB1.txt deleted file mode 100644 index e049f14..0000000 --- a/getfedora.org/static/9DB62FB1.txt +++ /dev/null @@ -1,30 +0,0 @@ -pub 4096R/9DB62FB1 2017-08-14 Fedora 28 (28) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFmSAVYBEADakUeJgNnAP2CE3vw+iI0Um9XvuBP6NdESRiJIEPgXhKWM058J -PZDkpRETS4pbB3xUyPLoogoO76lheBEOPEAGp5mb/7vEcwlYqjtuetFi9hcsbNPx -DeOLQ9KR7Xs2idU+DlCJW1WyU9UiLoyZpQgAqF7Y50MoxPKJtfDuM52YkulYLU+M -leRtxJzHYcXArU3x3Czz1FnemVtol3/1/BvmGQPIyj2HdG4vxWbiX79AUSlchh+M -bNqOOpVVK16lLEbJCxCbPdCsKCTOI+FsdQsB4bnX5ddNcvxxACwHNUifVD/1XH8A -x77DHohRbccRtIZqZEIKecHxVyFdr2mAl9mEXSzaFvRzWa+5seCgGoV0INBhj6NE -tHhSxBYzLmr5noQ8JNPa6eRipPvYTle2vstq2YUJ8D0ZbKbxaCPstemCQZrQKzh0 -tgezIgVXKc2U0i3ZOEYf4ISMHeBnH36nRMBnaH/HkLyZyHXNE4vswJpwPjNtaofz -QDD+TmCe2ObKei8iUqfLo/8Je8IvnodS9C5l0fyEaMmo5BWc+SYRSTR9libNruwu -4j6Kuoxge9SbRuD2S0qzKK2LYRZrlkxjP8REnpvXxUfeSvNYHrbjzYDv677S6pqW -dNqyoPduKiZWy6Vg4g+pYmk5T7vrpNizGK6exKiYZ5tAUaO3lrdpHOolUwARAQAB -tCxGZWRvcmEgMjggKDI4KSA8ZmVkb3JhLTI4QGZlZG9yYXByb2plY3Qub3JnPokC -OAQTAQIAIgUCWZIBVgIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ4I5+ -Yp22L7GMDhAAwwQhpXFXxegkgi0pFbA98Om3UBiQtcDemQSls0HEJh+J9sm4g0Sj -2K7khFnJCKsQNVnJDVxvxJ9j/AFZErRMjudUF7ACZfKDtNxq3gkH7qICPKk/DzeX -blrzPc/RX+kkl9I5jFBhapypsExa2yilfk8IiKq6nd2Ro7K+gEh/CMhfe7YBGInZ -3FmZWsq1+WKTZCUNmA8++eWIbmukrAoieTHTvIcOmc+dfaUAmjWtOnc69E9UmTCw -EMEbPVMSmZv0qnp0kByWUeV5cZR7NoXmaMaTr5aUY6wJuLshbWzgmudorf1udUwq -YlpxZJtQCxlHezulrDJG19d4dC5vGdYbnpeq01s9L9yieccKafWfldBU+YBZbo9e -9Uzu/766pxEAtqYYSyZboiqsj5NCoq2fRc4DjfCDVEaK7HSPcQpQFA+p18sD2qcc -EPPo+F2+M8PZLf4khipGRH1nm9AmM/v25a/9w22bDuUUvpcWwW45YsNToTTM4d6T -s750lCw/4K3jHnrQWxL7VfwLw0H1xlxnVqIXlL3HeOIn9EoaygxV2gJtPjB/Gwr2 -z/K+HoibAxvo7VcpxD+N38LaPtrx/ERMxeYBJvMgSqGaC3MXj36/qv0zTyyTItYX -9JfbOrikoJa+aKQGmTWLrcuKaYl6Jzsq3vRTbNRRi4SpXwTwMyuW4pU= -=fo1W ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/A0A7BADB.txt b/getfedora.org/static/A0A7BADB.txt deleted file mode 100644 index b72eae5..0000000 --- a/getfedora.org/static/A0A7BADB.txt +++ /dev/null @@ -1,65 +0,0 @@ -pub 4096R/A0A7BADB 2013-11-14 Fedora Secondary (21) -sub 4096g/84E02E98 2013-11-14 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFKEQpYBEAC30/ctUvGIzhMCaXlDLEJg8kxwoDhZQUgoGsciww7YnYXg5jdf -JtnntkMEadAzPTaLw4JIeJ5w9loV53Wrh9I9+3p0vPmMEBz11JPaai+J/SKfZ1j+ -lpnycAC3OqKlrjg57jG3fC1jixiWXlrxX1Zhiu88BDddTnhGjsRC4XMjBJvom1OG -ORxttD/UrLbXLYzFXigae5u/y1cUKRfAFrPr74908564OCaCXUxJ5+GCZA0kEg28 -tm39KzN8SzW+fYjqz60OmdxzeysLGT7IqiK2sfuVxnWIALq/keG9uxrFb6JbmeXc -afQK4j12qjyzr7Q2i1b8iN273DnzaGBWq28wSKKpq5UC/t2FsNzUikno/kC5RGsC -QIWkw4/0OYxxGinQ3TZGCC7FpgQKt1gRM3eP5evxNhgyRcAiL5SUHEBSDeqc5Q4o -A8SvPLoNKBuD0Tch/khHfQFe6wTMbEMlAF/4QN/E8QBVjJJREuoLOSzXW/vsptYa -0481hm/QWhHCM4cCFAUlKf29tDT96TrOQlsu83L5ast4TGD8OQvHyhSoR8DklpUQ -0XR+xNCFXTGlnrzfG2z3Uig7FW6qLHrtJRalkSw4u2EIBxJrzH3NShaFJdoKR6E6 -i+dD+obGkNh1si8tyxkE/pOlc5iQlvNY3Vy0tpIQe3WO+XumVyR/IzaoRQARAQAB -tDBGZWRvcmEgU2Vjb25kYXJ5ICgyMSkgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9y -Zz6JAjgEEwECACIFAlKEQpYCGw8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJ -EGNt6hmgp7rb8u4P/3rCrB/9x1Qg9wQOls0SiIWcZIHbxUcYVPKhYpN0xzU9th3C -o9RVcpAE8Fq+RZQk5D70OjthhS+uVl5KpXLQYdSR4MPRZqD1g4AXuWx8KhrZHaSJ -6SCiNaFCXqEuzCOpqJF76C5YIRdXkBuEUgLBfWMZdskLoVeyRB1JUuRQFGCxmItw -y/ozrRV9pJtHPlFG5GFQ5fpwpam/oO1nEZuRpz47Mqf3qSDpe0ngqY89r17Mjbk2 -tUjH1ZPbBEswFkyRgSmQkTTg1ROtfKS/ZsthnE4Vkyl7SXJoPbmKedd4UCJozinV -Q4l+EQLX/3i7JUX0ZzOTJmoamWenkX9zQqS1aq/3eERq5d92aNhCp3cWcnqpq1Sv -4SHSM8kWhgcSHV7owacLh0ywy4+CHqeyAgLb4XMcb2s+W7wNt1vUp+6bwuckNrnL -/zAm5svSWmUue6hWslyEx6VZc6u855xOijHFC3eJa+jl9/kdfgSGp1EiuK6AnD8E -GrgOqoYYu5j9/ZdFDwtJYu0XWbTIBVwKQmYE92sbl9vUjo8FPzl/Zw6D2kIfMtf7 -+G9e3+/Tc9IfKr2qjFuLpqwH6MQvhayEP2jjbG8gnSLUi5QlD6hHdhbZJK0Z0Pfk -6iHfx8kuHO2gIG1Ysig5mz1byEiZIVFcn/xTHecQNpgd5pjvhHioEhMY83xSuQQN -BFKEQpYQEADJD5tcypGD7xSynGzZJAZ+ZEQmrLq3iG2nCZt46sGKvjAIkuaJRxTg -qM+4g38YNFa40S+5j8vDgq1uMMLL2rud7x6fbW8MGtPYuf8ttva+sK61KqOQlJSg -YVK5Swg+KrAhZAc43MUBpc9WHC9VPAj/8/AOLKFfYyWja91GtFsiJED6RbynAVez -GlB/2nM2sbmWSX6yHcWs4mMXnMfwr8CP47XpKnRv2bwfItQNFBLSxMdYBmF8wwBO -dd3vANrgS+5DI8r/vmdMGJjhYEYPqgrRbuPRKjMb/suFbXBQ9emeDRu97AFDKMaF -35OH053YqFU9rPtdMfTegewFs5ndFVpZ488Wq3/eedwAHstDyKU/V+EDi1WRGEMC -I/BEwWQ7gVF4U0/4d3z/PsMKHBnm9koio0aHkFC0VuJB4kCjPbKEUgsQhJioAu4B -EqeVQxHJqwgF8lRHVnaP+yh+BGO2Na9slTNQpvII9IZbtGMtMNUvDyOv+zIGdPIC -zmUsj+2IGmHpm1Ztu/gtAtymxwRej2Od/u4dcxAY+xf9E1cgI5VxScbOCDxumk5W -HEawzbyWJfOqW8mZD3Nb/7SSfVrT74Rtim6xnrbqQCrnzeGtsV6X/2jWSCclRpYg -BVTlpcdg7DeaYqTl+C8lelap9l1Fn7cy4xZ+fpu0DVsRit9V1jFtqwADBQ//aBFB -BV/Jn0GPmyTBTJg8Xc5iFAl5Bhnmbzd66caDYSNuNmJD9fUkoXuHlK3z66V8ulW5 -2ZEp0tPqFmll31nRo7rUtXTG2dDH08UtvFF3dMpU0tpX8dP1JZKpkh8FC5iw996q -tCtreN3Db7++pioMA1oX8kiPSXBx8PBxnpTWOfnsZcTGmz4Y9PNIWbOWrjLIQRFt -Yl9tQePcZgOhZJI5TvnhrQadtC3D4h07IoLeBeUywasRiRP9re9oyAdQQYym/XKE -Qb3+9vAX/N59B/bcieExVKNbjNJGc5DAbmOUZ4llixepfi9b0O5Jp5oIte7Yfdtm -klwd6EBnd0PjIR0cO6VwRViuo6JXtZWvyyeEcmvmsA8hN93p8/oX2ghFK4fjCg6M -yNHnKLtJhegKTTJy04eFeU87Bgt/SBLsVinqjl5vNy25KqFx1ZwQJAj3VbTc9cDv -mP0ZNcyrJITLCzt1FL9Pw1cL96qnmbiWl21gpG7F4JLxiCtRie0DRTqP31KRVIYf -1b8fYO7cvX8uXUwVdD4XG92sgJDr0b+iEoS6LXm9mpFrsCucIa27FgrWw0tbMy5S -HBiGAuz4S8lwAMmbp0DC1aiN+UrbXiJJpb756dZpcoidVUZPIfGzlaEfPXTQWGRQ -6fYCatlsTIfDx1IL04ZZeRNy6KkcXFl96loozduJAh8EGAECAAkFAlKEQpYCGwwA -CgkQY23qGaCnutuVQg/9FG0g7S7mUCAQJxhw35B5ntuEvLx1DHSwb9QyYPJy8F9H -EdT3PKQq1zK5xI8LozaBPlJhY/LY8pwfyrVK5U90B172WyyPi66JRZu3QtjKfJda -FhSe3pO6ClRt9HPDTqWhhyawM8kYsK1aJfbW4OV5JTKr61LgJIaKDm4fczV7gulS -n+hwm1KykAEhVq0p8Kig7k8yuDXpOXderA6WmLJe8w0KuNHVYDYhAJjgHVfLNEp3 -dW1G3Tb9caCRRJzfmjVO1ETFiIG135WgTI4xeRY9Ch2OA3MotIzhHb57ZUnkQ+Pv -C4ZjetMHWmTp+bkBettpuS+WrAkygHPXVyNJ3VU+D8V006p/wOEFbppZh8XSVUZN -O7BIZsZdla1TFQsJ1UM9m02GjS46mNK5ICWuAGPfM6EMwMCwuYu9uUScy1te1/G3 -ryHtz+MPWYoquE7O8ePImD4weG3VROZX+2CdRkS4It91Ygd8NYfuXOqwiUsKxngJ -oAcbttqH7VmFiuMnAPNmZYx4rSqALT9LhjFkBydUKrMt3Ob5tXJME65dGtpzDQqV -lF512Wr11Bc/hn4YZBhtLE6+vvBVLelUHsm3NFhdLckR7p58ieBBKQ/UtLx1TiSb -8kHAHBMyW0tj2SLGwp8l3JER8+YKnbaCT6qYB39P1V0GAt9NqVQJF0bh/3Hz2u0= -=/oDi ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/A29CB19C.txt b/getfedora.org/static/A29CB19C.txt deleted file mode 100644 index 8539818..0000000 --- a/getfedora.org/static/A29CB19C.txt +++ /dev/null @@ -1,65 +0,0 @@ -pub 4096R/A29CB19C 2014-07-09 Fedora Secondary (22) -sub 4096g/9A007DB4 2014-07-09 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFO8u6YBEADZC195A/9R9ohpiM1JUMyitt7uCwhatgJ2q9d4PWVR4uqJeGq5 -9HJ5KWbo1akVpZ3hGdEwWqMReHJiTtzCT0VysiasifRSeRGgkxNp+TKvz6jUI3Is -dKyw992F/ARfToAIRrpn4Idbl/TGz3y1aJ2u5wuaWKRupaUEG7urfPECb6vNTyJ4 -PURcv4sZLxrdtaibMOu9FzPPLAiYjmdfDv/LIey1rBnsv+NBhfb7HjVMy3y7a0Os -yn7ru2IPHElAnDMbyfMGgFW7W2cv4QPynIjR1Od3zRkHA0aZQ81DPB++Qzu8zCnA -37IlU3Ro26xEkd8GwenJlrQQ3yfeQLwLczyXPy/6zK3ZWeIEeq6jvhsZu/nzZ2P7 -DshKFWrou4nW5ZTPZvVNlJ3sGv1u9V9cnvse332SitNxP/cPEX+ObIkq3IQs6fp4 -uKAwBR4pEBPkt14oZIinVY9ujLBL8XOJnd/+A3vKPwCnUDO0NWs66yQQQIOs2gfv -uPekB6JAEP3ChgKe9sLY9e+zN7W3Ehf/kcLnYsbzf+f2N92vAiswYm7fr7t9nJ3o -kYlHo3ZG7Ka0meFmUIxPR3+ns7d+qKAKV6o8gBgNJ49REfZjihd9QE0MbQ6STJww -zb82/xuhXGh7SdkiY5mJY7qGV9enMUr8hTlhVNQFo2JqqBvojX74b3WpuQARAQAB -tDBGZWRvcmEgU2Vjb25kYXJ5ICgyMikgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9y -Zz6JAjgEEwECACIFAlO8u6YCGw8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJ -ENjR+oyinLGcV18P/2iS8Oyuhh3mEqCkmdAqj8bdGn3DaUVy3QqvsSWyVnzPz/vH -JURDUv2RMXYx2OUOAvVs67nWVlbhgHqgqWZD42uFl4JKhC2eo367iIcm4lz3yewW -zzMq3xHr3a9CHuuuNWwVpGOSS2rouFZ6X8m6WPLeTJwmKAO1++BsdM8hojCJMR8t -Urfzo5rbDVieuzv0s5Hld1/1nuZzvxKuwJ1W3WbD1LFwJwa5ehePOUFDXJMflZeS -KHE+bNtfxS7ly/QDZ+Gf2cwpqwPCz2ooOEnN5Fc6WvDmkIEYE64w6VCJKFvaSvMl -DsJVWxnpfXbCRUhE8F+oplizxK03kgBkDQA3nN6YsAPrSM+UgXkreQLHKEJ/6X5i -ljUU61bLyVsBaqifE4dkEFlsx2J2LYSn78y5OmsQJTIncjhYAxZmdK49tschDFP/ -fbTRaHZ1LLu4Ecua7Ih8DKIG+j5DIWgWmDAdVNMyGIeyhHEjJKdA/5r8c8yWyEOA -PbqtMccS2LCSz3B63e8c4BmtWbN2j+gFY+A0NLc86E/phIF2Djhg+Ty+/AYpDQ1L -lvKsrXUnKbNFEM9nW517Fxbyv1Jy8SnTOrUQmMbyE2xKpx08yQhUDedf/MLxpW3h -uoS60vIniphIFCJTwAyBhRtBja9gxiFl49O0CiuLxgFIUMavCyTgdUrVFhgwuQQN -BFO8u6YQEACi/FTGMHh29b3Jf2uBs6gSxhLfvlh5GqWJfmjpZdJLoeFwEzJUidPy -vdLsTNaRupniEPUAnbQ6KxUjkSjjzF+zEOKBd8QG5a8KfCMp1QKV+qXByUVoVg1V -SDCuXLE3skifVD8C0YTd8z59DfCYV8hRugrUfue6S120LETo7/IkF9IMDqCBfPJa -IXgonkU6Wb2leenDrv0LqN46Fob9HJP0V9TVbhIYO2rkeyaybGMyj/IHj6KqCcSy -bO4McfRbsGXHGms1HRLd+sq67aeoBiNJn4hf7qpMvg2PugARbBZkyNuvqwWRQ/uo -rbb9aXzi25+L2CXYCicX5mDo2c9ftJri5BHLBSaw48tmu8adHk3ON7ZruIVIuHDp -D4wIH2tcvx3eFACYe0aLLXQlhCzPwILm9oyzyW+IktX5UWDJwwVf3RdV/fhQmLBg -OncgYiiI3uWLq9Z4UzKZxaeZyiDntvri10iTaVyPWrYyDa6vQqddKMLuDNrHrZYx -4frJYxTvROz0vErB5adw/kPcde4RKl1niOehWSQ2Rb5h8XciZyDcAyIEnRVQWb7s -LWxNthZ6pH+JKio432sqiP1guZfeyBWdzXSxKJVp5zPTPtRAmubuC65Zl4FyeM6A -0yPs8OF6EII9x53jiOYFB+xfoWa53xGwcdxMcRE0Z8yPg1D7v7Vc2wADBRAAglvQ -Aex4NWp/22TlacJe3VeF/KX9XDXw++8dQ6xt/VYaG8Nn4B+DMOlJHUc7HK7rQvje -g9mIN1VSLG7J9Y9vPyunKYVHLcihfM5Uetjh0gLgfQqoH6SU+2GlZLfEFIsxbS0c -ZmQGG35QztBMT2tm0o675IeivalzU28nZRKcMqW4x4t9tC0jtxgFDo4wFOvww1KB -PsXYV/FSttpDhm2DZvpY5kBxqB0SSnmbyXtEscPWmTQavPAHwRiMWZnptnMQ31ij -cufjWVElrwiL1vo09pJDhaTIs2pOhAF/srRwjvkl+3LOeRd6ahZ/EFxyWzfMtnEB -s39PaCyg8IRLnI74ZfZxWHJnHqYI2widJQDlF2MG4STGsq8W7AjzfGe/mOAJznSb -nxumrYm7pqIJ0gHfJLtokvS19qXvIWtkPyXCmSLGJKLdS1FArZ7k6KvY8f/M48CG -EgGo5VZQlsMBb0/Wk59VM2JAjm5aJwM02A3Diund/eE6H0y/w3brEWVRRCwOu5FU -rB8WasJ81jKtxgB1axlWvtTNjb6lZVIIJLnWhS/YkZorPGs7U8HEcBVqkue+ym0V -p8jBt2SDtNRvp+LScyVMRX+jzKJleQ8Zrrv0CsjUulZDif9S/F/4RmjkMRqvTMNn -wuDA/VbQ6WN3eHooWoIhh20TfTDyUG+K7esg52yJAh8EGAECAAkFAlO8u6YCGwwA -CgkQ2NH6jKKcsZy83hAAr1iGX2iP6SRTMM0jpOal+zpi3OAaIH9FPmAPM4yrcTc4 -j0bWdmzckV7C8JMzwKIl80do84ptO1Nud7+AEa2NzJEJ0xs4F7X6+Wn5I+UIcLWP -v1CFR/fR1WQX2pL/dVRsdb+KHNYn8Gep8Ez8kA8Llod+8Dd/xDUhOnYkOChs3nDo -95eGT1ucj+zf6zcyVks54UbAWnOVdEwp2mwQSy7Uio93qVTR1Sg6kuMfY4EoueRC -baulA4RJyBWUc5aNTzL5O9nA8lU06X4/lUX4Z/Zbh5leuMuvf9FU0mhCxq9Z5Rvq -HS+j7cFMkKoyAe5wpjv7/c3ZS7hv+C3BPh/X0uSMDrtP+MwAIPw3cShtq7LyO2tx -W6q3/rHwrylYmd+TY3NYl+ztTCpLtaDFx1B1E5QrNk/Vrw0EamT0I18fPKbb/6V3 -Yn3PC0bkA3TVK9KrxUc7vpP8OKbYhEK1MuubvnK+m+EVJCHKmyqnpt+8KoGSN0+E -6aTuGJG7uq1xMrt0l38erM3y3Uk2mSWxb3G/8LPiQwaFlppgl1rJtYDQAaSz2r+/ -cOJOy11pNL2D434fi+Jgt1RxAfw6gyb6VbZzUkvKvLMD06B5PObv4afpVhyiiVt8 -ypzn1el8uL5hyRm7SODXMvHU9uS7tYIKcjTY0rzOhRGpSBILd467FfGt84Xwpa8= -=laf4 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/A4D647E9.txt b/getfedora.org/static/A4D647E9.txt deleted file mode 100644 index c420742..0000000 --- a/getfedora.org/static/A4D647E9.txt +++ /dev/null @@ -1,63 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFAffu8BEADO7jct1nV16tiPH4r4nLN4KHoQKhhA7dGLg5QOOFqGye3+0iqi -2uzLnyJfLBovjndoCH2/PGyQ40LPKKb2wj8hFGcHWxAjMHjHClCoWvMlNuadh+Sv -zcsh4x1lOHnaY6awoPgGr1od/2lBsMNYKLfIY4paGP39d3gY5d0Hgpo808DXgsvU -Wz0Ds7Er5UqSbOTt4o6V9LGtd0DVZniCmCt7oQClRm+KH0TjM+aKKcHJsrh0r+NG -9id3Oi7a5LB4WWvmadyI2D8LRljWL28f+0k6oMvdCptLzIZjCWBMbrLJMeNgvYoG -ilUlIqvq5TPXrtTSFxQplHUu7++/HLGvGXBV+2PJJoNaTk1yhgTFcYZJfMfx8ncm -EQdn2Bo+pIByTzHbHZTKTOof7ko1FaAMNwf6A8ip+V6JRc3/J9YuuAj7V6/Ew3yY -2DJ54roKplHzbwWgX+DZl7Otf4N/xjSvv6plfku4b6d3PnEQm+l48w6bqea4I4NI -AFmR+tNqS/p5tAncfD1S9BgfiZkKhhjjq+QT+RRyGXfinpJ8JMUI0ix0jpbnAhJb -Z+lglE/OKMpLge7PMR4tWR2SnTcLg4hrdHBMqMP3e1RQ8XELUxmGHg+LgWTh8azU -nIgd93t2YvtiVZ680rjirO2FrvTQCHVTkw49bRiDMqcc3lr5nNIY6lp7IQARAQAB -tDVGZWRvcmEgU2Vjb25kYXJ5IEFyY2ggKDE4KSA8ZmVkb3JhQGZlZG9yYXByb2pl -Y3Qub3JnPokCOAQTAQIAIgUCUB9+7wIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgEC -F4AACgkQaNzRYKTWR+nb7w/9HFCyZjgjhO4O4VNv4GMKHGgUHiIConkLAF/g38ri -RJWzRHCq7Qii8CQR0QJZleQyvVGI2ufuqnuzlBRMTes6hxlZEX684h9mGXACNC2A -1OI9cHca/Ux3Iw9ecpDPiFgaaDUlOdEocwAT5ELKhZTG9lqz15s8n3kubLKpsJ8w -8aR1CZNQbywqIKRidfgdFgQtMzR8NGCdekgKyzYcNgRcZhjI0MeMszdxIhHbz7jl -97ZwHqsYo696SYJ/pm20SEqwJBIVanZv2EEqwmeTDW9+81uw8ogVXyxwYAe3fHIt -Q5faU/lgH02Xd5HS+xTmIrI5i7lcW0CAXKM2PB0xFrANmwAAYqmlfcvfRD4xwfmQ -8kDvVMbDRQn/iGo6+fJTYp3V08l28Fa2T2hvAtNE8uWkHR09xZr8G59ITqZepkng -crupBdxaewMynzF2mSPFrVGKKBuXR+qGWd/wGPFR/vVgr2XurWwk2hFWc0sg4bIO -jFLaEakqnQf5JWDI4NF8t3RgeDcDBh7sjxutAL/UUNoS+MGOgnOBiM0mLF1ZNx3x -8w+zmQOg2ZOqVEkJSZVVDw1vkXwgoUfotX2uyi4VKH9Txcr2Zv+70u4k5bIOl4O6 -fe/tepJtwc1ubr08dYS1AojGdbEVSz+cLfebdsvVAKQJxNomh1cmxfQyZW5CLOh4 -NQK5BA0EUB9+7xAQAKKhD2uDhdt2JdlROH8ZP08ddt2PWvzgpLQdU2yf/7icSjtO -09E0j0Z2rVKHPEZlWOxQpaT8ApS2qybc2+EGtzHv03u3tdgWb9fulge0iQsVLRwG -4kK4N0Ud5YwFTR9RhkKbAN5TRYzqrVxOql7j68H5iuqgWxbd75zYnVC6DjuaoeNi -2Jscpts0+mO40EDTVuBcZ8G50PzLeuT2SnagtiGHRfSFwYOFqquOyTVkA4IA5gqy -BeFdtRP835usnSQyjgffiMJiZdfcegj88PhDm8uCiM2j6sL1upkgzIPRMlTADj9u -USaTMRTnEZqgHAPi3BHjg3oIcypk17Z5VKRAA6Vmv1X+hx7sxxPEa3j9YFLwM0Ch -PbEkP7dkwJIwzuGUY0VAbXt14bz1L2YhkNnw/k8IMJ0EIUURowkOSPqbTol22Nxk -VyFyruXDqLUbNWZTiRYeovkHqumypz+a8HxIqNQ5PITKuVxS3EFQ32AUGh70sPJ8 -75tOpwtfaoc8EW0fe567mQngdHGOFFDakiC9pNHwLb4NLjgvf5jOLD329QHtFQ7E -lXVE2n1HolKN3pNiUyNaayooKi+hKazDmrl0WXtaSKzGKENxEDJUXffUV+Ug+0a/ -vQZUAUU6wxpffxquJa+T7BqO+F4hkF5XVqE4rAb8SoW/Trk5OfRZjSdDcUpvAAUR -EACO4GiybA/nOkgFM5GOXepifgePvvabEaEa/JR2Z56T3udkpM9Pw2V6oGZCG83W -GQ2YLNOan1b647qmthHkYPzpqimBvM/GNQ3zTCx//YGA7XQSld8JD7VdDVG7B8p/ -LfdAWP/HUVvfDarEufIBu4hMRFqPYbnPBaJjxiCzf5UfXpbu0WjZh+lqAlT2e4/I -Rjg8FaGr45B4gpMbrdf0Ir21ZUYPe2luYDLJJ/niMzOoqv6rLvtOlY+acdM1hKNB -G+CS0YFjFcB1LOw2YZX8+JWD445q/zY5FAQ6r3Ff2cKtcZhKHMPu3xjkJwVOuZ/6 -jQzXgCcrS2b0va4I0ACXkFc16Iq68PsO9R4hxG9qi7hTBrrKK4+A+wMjF1Uw0D0W -+vpQsQm6Pix37NPUI0nil5XiFryUERXNed7B0ZYSbRMuUVR3KGH9Z3ntHmTsLgR2 -ytk5E0HJJyWjKRnxcNu0F6rA9SOh2tsT/ssDqP5ceB7r7C5+qixhX0dJ3TdXsg2z -3MEzEtWJW9X35cDUeQn6bkLjU2Jg03iH0LdRWX6ziWlFg7pGiKMSqtmGKm5OzqLm -fArUO+08trKBpNMdCWJ6wHPcoUMF30Hovodv+gAoVLNJeKJiKeMkg/n1MEalMWf6 -6ZALfmyocZ8AlMFR/hDdMZ6c6XpQEGf1JobPbSnZQ9+aQIkCHwQYAQIACQUCUB9+ -7wIbDAAKCRBo3NFgpNZH6QoTEAC02MHNQ82jTJf9oboBtSuBzcpUtAFaPKfPLduz -2mnFktOQ5ol9lxny+pcSqwkRFXf/Td+cF5KCGImVPezNHVFNpVsmH6JTUjJa7lEq -TeObZrvAdZJOZuEEXWclzj44yRISfNz5k0gO/7ZR5EfMFNWnbgSsHoFUT0nk3Kji -U4lJHDFMTfwbAJjX8zEvJNiHQAvW8bOBtIRkMuesaGbp/7bCRQRWT5vv3SK7OY0m -SgbCIgAYXgdgHkrsx8M0txaeKCKCmkS81foi2GFcvAdr8tu3EK+jAb15rQLYWYxf -mo3OkcaqOBulLUaH7ctUZyw3IqSPFW4gl85WkNh47IAuenbIL/OOIbJHjhdqyqlH -lXWbaTi1uuF/gAeBUYuh0kKNsEi52nJLCCnLQuKPox40ghTN1xWkqPAmbNQpKjEN -j1WPdz4KFQDJAK70INxtv2IwOwTo4wtBDNxfscKSk8JbxaTRlfzN+c5lMtj/M5rD -yw/E0hB9lZPposGiaUrIkR0rAwsuWKxmptH4kOn8EaqRi4swbEkafg6W89ysD/Ya -Ti4Mzvn5SpQ3L4VcCy4sCiKxTjFc3NcvOdFlL1ihZFVywiWzVU2zzlck3F9J89Wf -+q60U10T+c+TbxiEMUIcqboA6XMTQ0C/6QHCPwKYyjy8qcrP0yGPRcHJ3YCkHI3O -JKvFJQ== -=5CMk ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/A82BA4B7.txt b/getfedora.org/static/A82BA4B7.txt deleted file mode 100644 index fa3f53e..0000000 --- a/getfedora.org/static/A82BA4B7.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/A82BA4B7 2011-07-25 Fedora (16) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBE4t9H0BEADKYcbvLVHkBat2JuxWgRsSdXawP0zOXe3WwwBwENWTQoyw0vId -gwEaITRECvx94E6CqKYSh30hkAr4o0WVMsuTwW6mAcHI7kiLUES9mX7q9YpbWzIK -gxf5LNU7+uV4fw3TYAdp6WIlwRBbBZ6KIAOdvA+2O+BWrIumLfKSxvfZ2NrFqb/o -axxVBaq6QWp9yivhU8QqNk+4smcsheDv4UNZz57TQcBRxTmGbosu9vsCLstTQfhm -DV9xISAfd2mjNO/zH48nAcbO2EKHlD78LFB63nbHFK6cvVboFURo+oExDdC//bEm -myXmTAzTAr7diRu8+yP3py+XPrT8qrTjnvG24CyDWsv0i6bsS1S1PwX1iFzSrmQF -5BJrrPeQPLfcLe/BKNV03glWRI1QZLqN2JXwSxB0MfmUu5N5Y2P5XIjHSQIy4aUr -sGiFNDweghYC0YnYC04viHdOMaQlMFLqJU9JB01nelkAxOh9mCOCnlRnm71Rk0Hy -vPjjA/aiHHaE/tTNOEPbxo0d/RRd0Tx5uYoYjVewWp6ingnmodnmJDIJgHF0csyh -qyFmWCeTku5nTZeJyTds1/MmwMDcMHNJDbZnHw/7sbaS+OF/O9jo6eyJ7kcyu6XQ -cZZkSdOoMs5ogr1UB1Y74Mo2E5USq+2s7NVMnOnGl9kJ/59xl7/qT7dliQARAQAB -tCZGZWRvcmEgKDE2KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCTi30fQIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEAZ/ALaoK6S333UP -/0+4x6bf+IbrOOATlmwt1hdF2A11ZJ/xTrG8exUmis64dajGP28nOs5L0NjQkpfi -xU8xKlDyCtdlFzoEeUI3kxvab6NOB4B5qICojMeVHOxn8nfqyQS/yYLdrQqoHPR7 -r1jrqBfKxEYH6i88UclpG7kgMgq2uENsH8mUu2Tsq+kR0y3gGJ/w1hdU6klpNL/s -tzQe/AtTcj+571XTPUDcbGHU6ZYWwJN7uVNuZ/AhxIlXUt9GAJd1FLm2/UC7xFlM -UK3e3k41TgJz/QwLRtjgIzEXY9CNWLBlSfxJjx2Iq94S/C5a5DWDIM2ue6Ci84PO -57P0LleC+sjIMGSCU3NgPz3pfbuz7rJDYkVkmX6Vs00mETNe85zE4BNS3bigQ2B1 -WALjTZEAeE8nsrE2hH51kXKV+Rm3f2aV9GXRK5Uuuavr3nyrIvUh4J1oR27RHz25 -+JF37yX9iCGqspk/CHlx8UGrHqOe/5UbqiRXHmzIpR4L/zq1MHJWzESJkmlr67ub -he2nC3vgL9Fb43qm6Q4aeHBUNF9jfwBGH5JdTShsrbcoeXnKvLI/poPcnpXODdWN -Ck6WNtP2A3n2bp7PCtKlybWyI7O+FFfAO8P6DYTYs27na3L8/Trr1VFk/24vSnTk -ZfBQafh2YuMdMhrVwfn7Ow7w2qm7y9yvxbA1nv/i+JST -=UuYc ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/BA094068.txt b/getfedora.org/static/BA094068.txt deleted file mode 100644 index 7564ac5..0000000 --- a/getfedora.org/static/BA094068.txt +++ /dev/null @@ -1,65 +0,0 @@ -pub 4096R/BA094068 2012-12-20 Fedora Secondary (19) -sub 4096g/4454BA59 2012-12-20 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFDSg/8BEACyQvgSivrn6IMAPvAPzSQi873WdiIiORZoE3M42yGwnm48H8W1 -Iiui2aRrogEhgw5HzzKI7NWMN7PY2wyIglN4CX9WeiSRdSPGBkNyNtJMfU4igujQ -bMMV/hHhDyP0uTOIzyqXqWNHJ12gcg+97ML2pr5LHobiWn/GhF2QuNMBC5m7mw9G -nNoaVItcEX1rxdyktb0bZAPfSLSDfzCetkrOfHS0uuUwnADTrO2hcVBUQvvi4yYi -iHx5vD3J+nTFpidKBCkShtoRXaYwrkdm+TnUemxGjGtRj6tAXYSsEz3Hvk4AIthp -PNbvzhpVvnrRnymUyurN7d+lcMgr3KE3VwZmDSjfVW9DKVXlWhSEHl8+zcearQsJ -cefygt9WmV+Tj9IdIn9xqPgeUeOEwRCdF/VYBkG9kOedLgd9VZoO5iF3AyCxOMuk -Sf66iNZIA9elIkIusV+C3mQ39ujcd4Cfwi931doGkoaxKM2Z1ShcrB4b2ySpJ6/Y -YPPLUBAtVa5UzmU77TqE4T4epAa600nTeTFplbTm2DM4Xv13OEfUfoEU/8cDP7e3 -GfQp+IBEHIWmO8W3/tkywzZ70EJE/4NSiaW+a37L9PLP3awuilBUA6OvOe4cmlvp -mWq6uLlTdyxNtMGP70+OmZ6xg2/giTt+rJiqKuUPFZBYTIainMQuBFIc1wARAQAB -tDBGZWRvcmEgU2Vjb25kYXJ5ICgxOSkgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9y -Zz6JAjgEEwECACIFAlDSg/8CGw8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJ -EAVi62+6CUBobnEQAJpp7iMUf5s6gi8mnXCHX8BETjQDyUCmsWRY1J4m/VeeNW3O -8zVSj5AFmlayd2koiNmTpsLqUWlFf/tULCXcS0Bmwjd+Yw1UpLV9lz2nUXiybX7L -IoD9cR1uw/qLHitsfCRXWOyvedAuFrurXskUh7VHe+YRRKMd40fekWca5mY7YYM8 -iR+0y4RwqN6Ax5HwdCril8621vxI0HEIqCVhU47K8gWxNWnmirh1qKVmel3gs6sw -+vQpMgbxXR5ifubEMENIsP3LvPFathMm5sg8di3EtEiV9b5y1MxumEZXe6LfBI9m -xOQUCFP0ni5+e4OeJ9XUdFuMjOfsVQlqSI7V9JmaE8Alwl/0S9rd5t2xEPBDfcYl -2f6vyIpPGnO/YkYd89ExenlmKHuz7cGpL9ivN0bRopAsGAFxIQSEQLyqH1LsM8E5 -0xKEHG2BZTkiegRUnUuSwicQG2gD8QHAQU5TUA4Ct/nt47t5EBLk6zWLeKJKjjcQ -m4GXxSQtpB1oY2ykegJLkaumR2OGt+dKJt3yo/Qlr/6CG+gMAyYsqbNntXqKHCG9 -h8zdWt8nf2oicqbVQQpCrySB8NHcHBmTy8++7UoM0QEiBztg95onjnY8LPIkW1mN -Y0OruSi/sly23S/QHcx9Qp2QYcS9cTby/rvTeQIQnIIfpKPG/RKxNYJw5LB7uQQN -BFDSg/8QEACO2KjO2g2cwtM5sCieboVyhqIwAQBDX+Lm3fm8ay+M9pgC2gpfjb1g -qX8+zro9NMIn4xFvlML+oe6CCzO9g9Eg9gMojvW0z2XNRMS0oCtb2DI9fmEn00YB -FrPaij9pXgbmlWnRX/6KsM651qWPKf/CKquitrOpcgztZOq2QvNznO0iu9tDXwKa -evnGXsqUrez3cWBBq7f/NaZRvky2yoQ9R02fTPYur79viuMTe3Cdc6MWNwSQkwbk -nNalbRsisJThO/9+KGf6u6NvhqimdLMhXzkD02oOw7nw/5HNh/j7eeJvgU0Iwr8A -HHo/kOqG17w+VT3wWWJKek2HqRhiHd6dR4dujUlgnbmmc2m/iF+CKj1i+prQv6GS -JLJRsJjNWSbmVuiVxVOsbboyhwtPdWs0XWGdMAQQNnjg57EM+9GQ3qH2NUr2DzdD -rAv0J/Kab4TYnzHbiZ/774GYvjhZwIQr74F/WMncASDaCL+GfptIqY+nna94fIWQ -/4JkdiZFUpsus5J1fQdj2qovmhsaehcGFfFZSST8LVmROaEC6qejyTtoupHdNTBg -A0+SUlDsq0MZUASIzaRD5tLJc0Cz6zl2jScsmEFualmIrsuUJkVQ+hZjK6akCu+o -1Q2s7i1QZO0Ws08YcisUZR9arsLc7vMjO+x4sVZWyN1j8RwS2A6OFwADBw/+MAl9 -9bbzblLa9mV2iXGJDBmUri4+DBUSTjt45VCTVlJdjfeu1NvozpfVZnCZ9UZqKTg6 -5NXwPi4dHZzvkYW9zIcvgAjuJYMjnxAPOBDj/VivOJ35GOxG17Vd6lf+5wxvKtjG -fO00IGgCkb/hxmMGm2vxMBZIhT71HoNESRi8LCTP8as2u5rMo073QAsEvnBLGXGU -WayuN6T7Pn0tEZBMmnKQmco8fzLbKtz/9wmvDCshVpnOK/+rsOE4av5qzuwsg+5S -xywUkDfa4yL6qYLSauwSQXBGdOh8qmv6vAOMrjvxxY9OPEM2iyEgIob4a26/47/7 -k/4bjIbzKa9nOvoBQQlyciy827U8tsL5KI5TvWEUD9igD/l8TjvR6puueWwlnBxp -gxXJltA0M/C6thr/sBu2xjJbvgP5bXFQ/VJEYJaCAzeh9FWfbWrpxCdD0tjCYld3 -hJF1aZ+bWOZW2ii0tk186r/vBqjFeFTiGmBMBqYndmoXwSKVFC1p00f9y+NrDQth -IgBIaVZ2FZuPDKBe6cLe2mslE7SLKwdArfrhj+TiL7OjDIpcncZVc8fWIBoTeeQV -jKYeqrWEbBU14tLkYUElyQ1nIieKPOpRmwVsGpxRq1C50NGStqTCEdugj/pecd6W -r5Z8ALFWU54DCZ15qzMM1M/Zu3+u1g9kDoveXDGJAh8EGAECAAkFAlDSg/8CGwwA -CgkQBWLrb7oJQGjZwQ//RsolORqR2/ee+y1txPt6dj8Fxu4ly4LvQyhnnaqfUj9v -g7nUq8UbC5tNfqFy5mII1AWm8V+jOEseKm6EQ72mVdfi3Kt5VPDz3DatMjPeOOKE -3kwN1fHKGv3YZnnM4B4VhzCmlbfmF0KM/66yh9zdGpMN6kHaE8dmT3cxCrMCQzb9 -pYVz+4ExH/hv3CTj6G6Zxm9o9m4fNKhW+rV3g8Yc4ROALO/WPMto5i8j6byNvh99 -d3k+LOg/zQ1CWU+pWEv4RrjjOYJJ2WFdKyf78fddIlDt0jiZynofYT0JoZKTc88e -Cz26RNp+ybq6jT944XLzVlX26GoklZpWzh3paZBk8ZOmO1lA91StAm9aC96l46jf -bNU3BfJjffHfMV5rld6Z80vk7FMep8RBKgNfPrgWTOE4UW8PkrdJ0kq0g20gqYa3 -6QDenmrRciNlCdkzWeY9hPZpGgNyb4JIc04FvjgU4x4gZvBHqP45l9xbxC3zyq/1 -kt+09wuY2U+F6VP0Iu9ktRRrujHLy1mHqkabyYppI98ljBUjxYxh6NsIvoTBzBR/ -BWGR8HrGqZ7Kq3lCwqNdGvjG2Vv/l4zG0wg54BZa5uXoed0BmHq5NBAI9JFRUIB7 -UKu0yZnTeU/cTLpJDdV/dsFuUXPjaMIvrFFrmi0w6W/clkrgaOYyifq4DOdn++8= -=cM40 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/CFC659B9.txt b/getfedora.org/static/CFC659B9.txt deleted file mode 100644 index f5942cd..0000000 --- a/getfedora.org/static/CFC659B9.txt +++ /dev/null @@ -1,30 +0,0 @@ -pub 4096R/CFC659B9 2018-08-11 Fedora (30) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFturGcBEACv0xBo91V2n0uEC2vh69ywCiSyvUgN/AQH8EZpCVtM7NyjKgKm -bbY4G3R0M3ir1xXmvUDvK0493/qOiFrjkplvzXFTGpPTi0ypqGgxc5d0ohRA1M75 -L+0AIlXoOgHQ358/c4uO8X0JAA1NYxCkAW1KSJgFJ3RjukrfqSHWthS1d4o8fhHy -KJKEnirE5hHqB50dafXrBfgZdaOs3C6ppRIePFe2o4vUEapMTCHFw0woQR8Ah4/R -n7Z9G9Ln+0Cinmy0nbIDiZJ+pgLAXCOWBfDUzcOjDGKvcpoZharA07c0q1/5ojzO -4F0Fh4g/BUmtrASwHfcIbjHyCSr1j/3Iz883iy07gJY5Yhiuaqmp0o0f9fgHkG53 -2xCU1owmACqaIBNQMukvXRDtB2GJMuKa/asTZDP6R5re+iXs7+s9ohcRRAKGyAyc -YKIQKcaA+6M8T7/G+TPHZX6HJWqJJiYB+EC2ERblpvq9TPlLguEWcmvjbVc31nyq -SDoO3ncFWKFmVsbQPTbP+pKUmlLfJwtb5XqxNR5GEXSwVv4I7IqBmJz1MmRafnBZ -g0FJUtH668GnldO20XbnSVBr820F5SISMXVwCXDXEvGwwiB8Lt8PvqzXnGIFDAu3 -DlQI5sxSqpPVWSyw08ppKT2Tpmy8adiBotLfaCFl2VTHwOae48X2dMPBvQARAQAB -tDFGZWRvcmEgKDMwKSA8ZmVkb3JhLTMwLXByaW1hcnlAZmVkb3JhcHJvamVjdC5v -cmc+iQI4BBMBAgAiBQJbbqxnAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK -CRDvPBEfz8ZZudTnD/9170LL3nyTVUCFmBjT9wZ4gYnpwtKVPa/pKnxbbS+Bmmac -g9TrT9pZbqOHrNJLiZ3Zx1Hp+8uxr3Lo6kbYwImLhkOEDrf4aP17HfQ6VYFbQZI8 -f79OFxWJ7si9+3gfzeh9UYFEqOQfzIjLWFyfnas0OnV/P+RMQ1Zr+vPRqO7AR2va -N9wg+Xl7157dhXPCGYnGMNSoxCbpRs0JNlzvJMuAea5nTTznRaJZtK/xKsqLn51D -K07k9MHVFXakOH8QtMCUglbwfTfIpO5YRq5imxlWbqsYWVQy1WGJFyW6hWC0+RcJ -Ox5zGtOfi4/dN+xJ+ibnbyvy/il7Qm+vyFhCYqIPyS5m2UVJUuao3eApE38k78/o -8aQOTnFQZ+U1Sw+6woFTxjqRQBXlQm2+7Bt3bqGATg4sXXWPbmwdL87Ic+mxn/ml -SMfQux/5k6iAu1kQhwkO2YJn9eII6HIPkW+2m5N1JsUyJQe4cbtZE5Yh3TRA0dm7 -+zoBRfCXkOW4krchbgww/ptVmzMMP7GINJdROrJnsGl5FVeid9qHzV7aZycWSma7 -CxBYB1J8HCbty5NjtD6XMYRrMLxXugvX6Q4NPPH+2NKjzX4SIDejS6JjgrP3KA3O -pMuo7ZHMfveBngv8yP+ZD/1sS6l+dfExvdaJdOdgFCnp4p3gPbw5+Lv70HrMjA== -=BfZ/ ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/D22E77F2.txt b/getfedora.org/static/D22E77F2.txt deleted file mode 100644 index 87b5c91..0000000 --- a/getfedora.org/static/D22E77F2.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/D22E77F2 2009-01-19 Fedora (11) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.9 (GNU/Linux) - -mQINBEl1CHEBEACn5bv6rGJW50UJ59QoI5E27q04g3Gv8bH5/wtk8NjwvgTCtGRd -hfXCWvd4OGZjN67m0tsWmJltC7pCv6i3pnaVsVWo1u36+aoZtdP1tqv7CD3QlnLK -bx740Oor2YJJvlr7ypFcYPH1+xBZOHXUjPRrqTT6nY6AVm2U/udIVZQHhNG0mc4K -IHYZeJM3GFOL1sE+PX8zpcGh4MUKBsVcPNVYpD+HPQyDAgQcL4+uOFR0tnonaiWm -vA7A/4kNokHpbwDY7WwEnGZM6KJUGa2rTNXJ+Vij0ng7mWRZ5/0GcM4/mMX6dn9S -xghbESiLdip1ZTb60B/ClFZi5PiB12J6DQo2h3+hpxhx0AHJSQRKt+5uw/UyjdmG -zHROos8KRvTlTXeKj2SsNvjQKrbyQGT0AXVBcuXLbbDjijaIF8EE4SFXkCyU5Do9 -6mEkuEwMcdZ8KQC25gF5jlM0G+nZmcSgZin7b4jRvFEPZ+WbPzB51wijmPuiadWT -H2ssiBFSHZG0SljVu6vG5YaTwgyB24+1jb/eTSz/wa/Kh8u1loZnWb/F0K2UnA6M -frDnlpdBskgMjBFXnzOqRYqzyQRCBe4T2IbkzUnQYeiqvJAiVsdVG5/TncxCzhfA -E9t2gjilRcWGRl8W96M0mHlw2uMkLRDN4BfwmWePlQQ8fGKma+PiO4E9rQARAQAB -tCZGZWRvcmEgKDExKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCSe4UCQIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEB3Fx1jSLnfygm0P -/RIMXuhggaKzYYSrtv4GH8F96643WwmuoGl0hZydNt3WwJCy+pNAmFkCK1NG0K6Y -HC/7jWKImpl61q0XJwygOZAfpy6DNKsIQkfJdk7afZHruXrapphIbf127pfSayu9 -bWHKc6ZovZ3tt8XjH7p9cU+qfidmTyUVJheIJyLQ9C+Cand3XJ6tR+1catKcGYWR -Zjjr0gxQWj3T4ow4VP9rju8BRYItgDcfqWSK06HAkp/AbCqJQSwBF5m9mSYokOA2 -YQuYwAcDMjl/dEoGgzm+OLoyj3+mkeMdQTMnjvEirtsVBai5CzHlhukAqUpBBMV4 -MQmNMkYKCCbt/uOuy+Uj6caV1HITZmDUOAu3Qr9Ur1tG4lggLTKSCWrc6sBGdg3Y -w04XkHppU32bPYPX2QGqMJh9QOQAciZIw22NNffDUI0f467cJ7j+nv1M9lsd5voZ -BiHN5d7abDr81q22+m7tQzdy2UvYXT0tsEHS6DUWvo4PUW2/IpUOv8SUytxTACiY -EGYA00q5Ax+h8FPXo1v7Dd2GksLduyByaW0p7P2VyjJTsqkMVEQ2wRNCE8eipg2s -xpsSU9M29uf7/goHDI6pfXpN+q2uPTLucCEIjG5bDICw3uwWLCJ+AXYLiPzCtn7j -TaPTZVVFnbBFu75zklD8EtJ1fHJngYTq7yIMNKOJQTyQ -=moZO ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/DBBDCF7C.txt b/getfedora.org/static/DBBDCF7C.txt deleted file mode 100644 index 3fd15d9..0000000 --- a/getfedora.org/static/DBBDCF7C.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/DBBDCF7C 2018-11-13 Fedora (iot 2019) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFvrElgBEACjNft3anFHNzwHW6dzxGinWEzFin3xBUjhre7e23DgDRIceDte -POqXGnIN5yGGH4VZrEGHfjTPoCcrRSpM75ryPLa3Pi0UHXRso/OkO2ta+VaQRlwU -2WAYqd3g/eck+x7MZHuKKyfyxDSUywuJumWhIqeJLyG/J9e1riHwaxYwtLDvHCAt -K4osoJ6GZDx95Rr4El/N5CtZBlIzRQUJMo695MIxeKA6RmlQVp8mGPQm20Hveo0k -BsLYFJxTW4D+KnwpQr2mJLsEQnCgKcr8TF5hDowz8+o3wdUrfteiVfkdX64kXJm8 -5jaR/K0ubnv96iTxoeh2Wf2jNAn3EjKhPzEeYFI2gCm2tzwUEzSuOjtrx7FqDp7/ -iJRANmKQJ9KzhCT5JLkeS5do8d196xiI79Zlx8ISQRvCNuu1Or7idwvIgHy/+BCy -PUARv430YvXU4d01FVKTlNrbRsq91SVojek4UXkAk9oh4d3Y/AQF1DLs4nK1vBuk -wWIKwcfVA/RidSqXofx6pahTPvguTkAARhMEJPLtbQBzD5kqkdgdP/6s7ziTwGkG -O8iF0TvkCwMXWXHl1B/m6b3h/wWOIFNfAZ0FxZmmD5UhytjVjhdI7jiyZf6JjNup -VCVx1eqMGZfm3jkZqzWOB9wrVrb6rtI25ZuoRQJ/idnXkxZmq4m1MCZbCQARAQAB -tDVGZWRvcmEgKGlvdCAyMDE5KSA8ZmVkb3JhLWlvdC0yMDE5QGZlZG9yYXByb2pl -Y3Qub3JnPokCPgQTAQIAKAUCW+sSWAIbDwUJEw5BKAYLCQgHAwIGFQgCCQoLBBYC -AwECHgECF4AACgkQe7kHItu9z3xs8Q/9HqL76vo5xZjl78USwgX7t2f8Aa6sqD6O -IV4V9KPCaNeqP8OF6LqYFxkv3GX3FMHGPHVKOBLQ6LvuGozcnnpZ3ypq6ChAy2L4 -W7ytFggpluArxSN5jmHoOXO51wPDPCSjd4rRi1+XnMDiA3VIk0vTcGHUK13Jgvzu -UrIbFYhVwwCn8Rt0GvCWVLyvKRbykN3xgFmromREKdDCUymYS/u4hXw5xQt2AE9I -gX9puLlGH5AdbJumMipcaI9erH/KVoBvtAHA5ozkL0PDocRaWA/W+i8rXEeI8TJB -A7Q/Xb/L12aIOCzeyEKGP911iR3/99UGMgfswKvF4WT4KdAV2VZoPizu0Am2MUYh -oexdnHY6GtU1UKcWt2hW7HmGBCZVdVpUF3W/gebe+ahLPT9UhqNTin2vw7MxMKy2 -uWPZri76R165F3TP434dZLNfkNa1rdtQrRaD1Be9/hAQthYWKoCFowbMLAr1Bgzk -Us97arxBTzqkr9GTCy5CX+nObIbwkrFYugRfA4bSzNFSpCo71cudqNwKJEw65lF9 -0+T5ma7lM6ZwijH1A9pYeGQS0eUOrV/0VTsxXQOyS6Mcfper+dkOpypZdSnJGzid -9HPUSUdjI94wtRYInrcD09v5OnJcoxUDVVjVhH4FIqKVYstucn/LB67nnn+55uTO -Kdm729ex0UI= -=vzvx ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/DE7F38BD.txt b/getfedora.org/static/DE7F38BD.txt deleted file mode 100644 index 97a4d00..0000000 --- a/getfedora.org/static/DE7F38BD.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/DE7F38BD 2012-08-06 Fedora (18) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFAfSWQBEADCxcZGtV5xGYGOKIOlidZ1Kj9ymFNCk/3+HkK9dpRqFdoIpx7o -ZqXFWFWktMeH5iUarCAzhIZlNJ6hsOXHQ6yPASsNR8XATCtaf2P+tz50Rvo6R2OK -2/KRIrRjBL0GQNGlJ3QX+WLkZXYYuf47TNiESJ8ooMp52t2IV+PXc//cdHnBoS2i -LOO/5PkhhnvOgANmj/YrO2OA9p8NC/LoMa0Oa0u+EmBO3dddRqobRKV1+fA725Ij -TXP5C8K3xWKo+vhmFN/k2IrcETAy79Gtwj1leMqM4m8AG5XLdjv8wjziNtEyBDz6 -5MyYG8bMoVVpeTt8erWtSWOyeAxH8MeIkXbAmaTt/4actgTPm8/tvuB1cP1S4VW5 -fbBtV5G912xX6vz8WGc1SjnHaNzQJ1xBufxewkcesN1BdN+vqSE4UOR47h4E+R+3 -aN7chjYWRuz4zicBBVTv26Zti0REY7FP0EBa4goxf/zC0FQADQRhsqoZKcuATa6L -2j930rp0jGHO0WPgQOMDdd/rzp/oJjhjZsChbj1ktzwfEE5gL7QnQ/mm12C1/2Gu -tIRXVrMCxsyO47L39eqc+KfvnFXF3DuGEeaC8Iko3fF79FL7fREZ+GKWSzM/JKjk -KLTHaew03qQi4EhX5cthRmDMfQ7MJA2sk64djvTvh5fJmyANEfDhw3i1mQARAQAB -tCZGZWRvcmEgKDE4KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCOAQTAQIA -IgUCUB9JZAIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ/wESXN5/OL2W -7g/5AVNvfFwLFUcav+cj/gMscI9+rMbzwf8XY2TuXautacMhb2RP3B1taEFwzHvq -THXLxVgO+wZDIPsZrdVEjRQLion6DxOp9EnhJUysSXHzfp0LFOQzfI5YvBkqpf7V -ew8K6nM1+hTyLBQWKnxsAolaglB2YULoIYY6q7eJpza8Er9z4MWmyuY//SUT4t27 -+8vmg00MNx1W1xoJlpF1L2T6rhiYmeYlYQn0KO0eEGBLdDZvWQjW7Kmpnt2Z/QzY -smNLUuWxtwEXNbJ4lWehHMAocoQFJ2geFC3hOxyC2Ahfk3AlTdh0HYCrtr592Y07 -cMRqrSAM2+Z6sE/LuHUjYX3sQu1+/by9aTKqhajpgHq2DKYmW4x5+2PF75slU1Lr -QiFyogXAU0poQjt2QWvo6jwNxSkbQpsQ1R4gkxb7TkI/fR4G8/txOIpwtepiFBGH -ALqIMx+sMQEUMWZlArBf78Hf9JjV5J8g+eDbirWKYJvpb50IYnGNbS1IVUcF6k4G -lcBV4UFMytptxYVOthxg0eMlprfhzC+kQJy1iockVjfjq/g/akFF1JfK/oOEVuuz -ESZ1CDA18AAktEFEcefKcx9wLqmim9udirDjpMu3aH3HfCouwjX0Bhwf5kLgVyz1 -fsBILFvv9KXz10kfmgnEwhJ0ArFuHW5kk/LUEcHORdO41z4= -=Xlbx ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/DF9B0AE9.txt b/getfedora.org/static/DF9B0AE9.txt deleted file mode 100644 index b19a6dd..0000000 --- a/getfedora.org/static/DF9B0AE9.txt +++ /dev/null @@ -1,44 +0,0 @@ -pub 1024D/DF9B0AE9 2008-08-27 Fedora (8 and 9 testing) -sub 4096g/80E34F98 2008-08-27 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.9 (GNU/Linux) - -mQGiBEi12pURBACCiC3NeEdXbE1AY59iPwsgmcjOBivSe3nhU90AnLjg2qvaizqa -420fbq1bNlQvU83+C7ZP2FJ5pVLYQBKHGIP9VTbZL1yIp5DZdvpd1PDdjJPep2fV -1y8Iozd694ujn1DVG2utnpXhnJxzXmXsoFMu2xGvV+sTKQSS8vJJc9Eq2wCgvvZ+ -FTtk2lbaCmgTVZpFIeCEOUED/AwvjJjDy846GI+H5o+J9Rbtcp2mWNqaIF8DRfGA -JfbH9H14Q/4WW75Y+HNoSVWTiZeLJspHR5yUqsU30D+fFi7I9HdKJWWMEAk5sATe -znIGTPvMaBFomRT+Mm/ugkgZPpAwBNbxapCEH8U2qF2c5he9pGvyWwWsMydEaffX -9DrNA/421ns/pPoL7EYOhWsvuC8Te+LVNkfC3beLpYSEcQcu0rsCSuy0+t98zbCY -UKUE+rTWAveaMdFA0o9it/fUVRzNAkX62Zg8aNLAtkAurjqxwqJ6QdMydNqrQBXA -P3GLZoKg+YveEEx8jxZ4tC1Z3VWHzXSzO4ej30Cl1Ae2aN1LMrQzRmVkb3JhICg4 -IGFuZCA5IHRlc3RpbmcpIDxmZWRvcmFAZmVkb3JhcHJvamVjdC5vcmc+iGAEExEC -ACAFAki12pUCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRCOaTtN35sK6a0G -AKC33X7/usCOS6uHj2OiBxQwLY7++wCgvG5hzgNys5cfbzp2YAgPoTVzXEm5BA0E -SLXalRAQAJHPSkzNsHStgqXLojWIYlnSCiGtmpEZentHpPrw653cOhCQ4VGk9YhA -eSgTIE9hBav2zNR/lHLRvAIIGvAqCF3QcVJgWR/A6MeWbysZhlRnLGJXGJMDceO8 -D8jno6ngh0nzenQiB4S4Vpa/PEzh9tEzZ33ktRHJUTKrtCO5r1haLAGp6csh2pa7 -Mfu3jFBKwFwTkwyUE+odadtQBZAIu4ZnSFqpX5JXfHdjn/GbzlpJ8UsSPFAy7wZ1 -VSl65g+j6TADUtL2wPB1GxIJSs7kVvM5YwyddXeVOrpJwD3ayNSGzqnL1rqL3ZNn -Ho6NIc2dMouwx3EPvrGt/j3xqCQej2+63r8d9qLdOtvvTcJnlDIYR61+EKBKYugN -CVmcztNa8N44P3mHFX2zWbURYSEiCL8H8K6esPB1a82eOGpP+hnDc+BwoLMniDb9 -SIwsRtxhyGmHUnP0h+HyRbC9ykveeoqA0Viyvs0qicd6lIhMtaA8RXmiv/PkEzX8 -QqhH+zU1G7M5dH8qN9mJ7zJ4jB0y5WkoHXwIhPjzgKERMmvh1Cepr1CyKxP+HoVz -MexUf7bfV4e874Dnqgsga5OS5l53NQj7lp1A41lehVgPxFP5Z11NsmJY4Vzwk2Yc -Twt0IKLa7jSI/NoWpjU4ooAcg/klVNf2CQEVFUPpG0BTSaflV2yrAAMFD/oCBJuM -GSSzYwFmwVTfLgjCAs8e12wc02I1BslWC+hNmn6O+5Vc9W7bpphZfX5SWuiRRh7E -uEW5m1jJ/79W31g6DX64e4JJ3nIU5At1KdDWwZL8KDTHeHMHci7yZ5BdXT0yfG9g -fjFtNeK6McbDeLJFIB8kFMoEjjU+RuUPZ8fli7EbY5ij2Yi9XuKMbbOK0nBLJmxh -KyXtMxlcYZo4Kr/k7XJY4yPZIYSITNfQaekzkStxbPMevgh5x7rT5XOz7c8/NI3n -s+aifWxlerjP9Ls+OQHyF+fU+9XymN7+PI8UwQjTSC0p7THz52zMYgJ0Rz4oPbwZ -aR9C+w/fnNF4k/wIpDWwv0yrxbG6pGrlMLGT9m2pUdwJWg+3jVMx3PlgAcNPXUyu -64GhIneaqFQj1Mqy3+GCYr5wHSkRJRmxaMcbwGC4890tbfbS6bLKPYAtM7AthRUL -Pkt6de/CdJOK8gQjc27rPCxzEEil28xijpa4XGOp0P5nk8BL4Bp2g2iJnh6xJJrN -OY6UH2ZGRFl1cv8/sDBVMc/KfXaDgMh8fDhYkzRPkLPKdicdDRGUYXtmNf1NurT8 -W12YKqlj9C28mv6rLesHAGT1lIfkwvcbg/dE539c6VHg05DdfsD05io4WvMf9iy/ -DfIiGqnRvoXvfvrVi5Y4AMAkJKNydxa47b3wG4hIBBgRAgAJBQJItdqVAhsMAAoJ -EI5pO03fmwrp7Q8An1wCbS0WAB+U3TZVA/z+U4yhcv08AJUQGF9I7RlUxkOPAwGE -X3ofpIDE -=yrQo ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/E372E838.txt b/getfedora.org/static/E372E838.txt deleted file mode 100644 index 782d3ce..0000000 --- a/getfedora.org/static/E372E838.txt +++ /dev/null @@ -1,55 +0,0 @@ -pub 4096R/E372E838 2016-03-31 Fedora 25 Secondary (25) -sub 2048g/A0582CC4 2016-03-31 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -mQINBFb9eUMBEAC4XFMbnbuiLmUPRqenm9SRcNkrXWvp33iBJBUKfqU2pKApkpDS -YvLNukZlWDnwlyrXzPB8WJQOcugbtmN7nWK1vjAJnrT9BHPBnLZvsZoYuBnEvzsl -CbV6cOOal85LFtdqpu5Pir9OD5OSgseubRh21tsuM5uNPOE8pL1ffsRt6zD0paf0 -G1gr5+9rSc2cZ53RgwYBAJV4tethe+RDGSs/6Lrv6v8SkkgSW4USt7R73govRLTU -XRW6NB5s5S74EiApyAqgC2UMNQZw6PjAGUFw8BFhJcUNzVnIzGrXdMGdBQ1G12io -5F3PDsqHZ9V3qqLxUgNhlK3W/HvIRv0irRviSOwux8QnE3toSqBaWbS445L9Ar2z -7SHdEb8InNdV9dcPL1Y5Nes8Do5Sgz6syBVwk4vfJMAs6w7Gr/fdS5OdOCkv2XrX -f4/Bmxc5GD0KgXTduErcnWCoswJx3CVbUt/a5/DozQH6wxjlxDfVE1Y9DkzxPeoe -J8nMzidf6N1YkiaF5fRIoUY0edYh4ID4jT/NTRTAAc17BaftK3prqc+x0MWROuiT -W2Y8tEIZthNT6jBJsVlV9ip0JWGAM4cHScsnuXnoZqFQdpe3En2kcxcWb7t/Spwc -cMLfrD4YJw4TVRN7qSk/2XvNmM0C1gNpBSGrjXI9JGOY/SBScUx5Mz/9IwARAQAB -tEBGZWRvcmEgMjUgU2Vjb25kYXJ5ICgyNSkgPGZlZG9yYS0yNS1zZWNvbmRhcnlA -ZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMBAgAiBQJW/XlDAhsPBgsJCAcDAgYVCAIJ -CgsEFgIDAQIeAQIXgAAKCRAaGFzd43LoOOxpD/0XWzF+OvKyhM7xz19F6HG6QKTx -3G6gxnqzrOb9XVB805C7zPEmhURO6TxxZBigwothmjovHMhVrdeVtChJ+UWVy16W -fpemCwiZ4saLfyMVQQBdovNTwTLAawpp0frkGqO8iGAuEdnCSrTZKZLjg9xiTJyz -C5slpje5cHEHA51pUUuoK542ne2x+08KMhJ60Ppo8seSRHQSbgnqLSIo9Q3QnA5H -aRHjb+nb4cvXHsLRqoQbNcjMf9SGe7tDhLzUjeGG+J6b3H3evNp50pMTg610y47U -rpy5bXjHOEJSx8zFjfXo3SEKFCduDkZUIuBCw8YtjtaRSM2ucym6WZr7Veu6E0RX -h4xoB9d7kp6gHXfaia9BRlTM4AuLhvlU3CSQycZllrZhW59Pm4DEyHC3aoQZnP7a -ypPSHlUE16nzTkdPLa/Om9FlyXH2lnwV/dQ3uNZeb5H+wZBoPTpcmgfCSRbZCIxF -LTlUuZ/LVGN2ZfDtemeNI/Myf/fiGUU4Mc4+PISwvRVvZLJP1W8y4ERcmtK3khG7 -lkU9NgSMDzDvkP/EmXBldciqlTykYAzKw8geShmgL2Tc4bTvqJxDMcDHLhYz0R0o -KHqpjsRpJt3a0y+Z+15gG1winnoOaIxF6QqXCOWc2M0mIPmazkOXWITQEhFMn/GV -rYtB2w4+46rQ22pp0LkCDQRW/XlDEAgAhRX7+JqpohxxLest1GrtxWjEwDrUy5Jr -2fa/3l0wgvQpooHd+RK31m0CvTC5udFz6ysx+L8LC5yWQxHiR5VNSYy9uNfaM8Kf -BklM2Q2SRZlv/BlKN9Djec5l17aldm/6zgL6/gdx6TkBBdv0SQf5fb/mm+j+ot3g -LPveEiXUb/0pTiWjEAP/N8yNePctr9JX4M6maTtQq8iH/o6H2byj87wicgr4gaI9 -RDe0F6BgAJ1IVCBt1RB19fPt5Z8BgcNhZdxi0xzn65uYg0lQ5yjwBSHP4qAdLRAS -aerEhdA0gBxf4Gj1by8fPpaWKSZ3VFcVIP2loqXkm/Uco2+h7AUgvwADBQf+PV5o -CcgExnG03MMMnCc75vP4hDK+EyOtAWik4WJBuCdNoIoCvysM+GBSXt7XD9FO3qkn -UEQlWDQMeWZ+NBIQj7tk5WWz9/EZAVdj4DeN3VsbHpgIbOAHwvmNUZjCLvpBE3+K -FtFZOffX629n8E2YhnLZHHIu6TbPesPPPdqpJbpU7L56nDO+ZqcqMY8rIOeViZYG -zUBdH4JbwGmq2i9W8tf497CjdWN81QO4li3s688fSj3hcz0ewj+o8WDW/0yy0NkX -lw7lO2TKownpnLJlcm2aJcptaN7MbmfvEg9mAMdSjd0CFoTSUuzF7/m+C8TyQTPE -PsE74vH4MHuL7rANpIkCHwQYAQIACQUCVv15QwIbDAAKCRAaGFzd43LoOC1nD/96 -jEXAmjTIvwRf9b9CI+S63JDUTi0WyZaXMEzwfnmQY0KXDwbXuidskbpS3DmCcLjF -kRdWtiWdzRp6aCT95GxP+kRz6Zy7PkjpPPZQ0Tj+b3zInkOQlodPSTfWUbDztaHw -zzx5g3L9YebmWULOZvV+rqAWseUw8xJ8VygDnKNBvXM4berDt9B8A74IlCJSvGpf -zL+UwrCAOJ9etYpJjfqRN+TW3k3COrYqVN7R8Cq42J4sFOE9BhSr26NdTDT3wCrV -veDRJ20hChETg3mhzTcYj3JIbwEUO2hKVUB+bkOjmCJGYV/sJM87cUdi0D1OacqP -EbKNCbMidppBcNG1aGY310S4uVB0Wyy/UoqJH9szyIBkT7eWaNthKcd7UnlVRaM1 -vv5sy5ZudJmTpNuupKfpQEJPnRM2uVBm5Rgpa3tawzUDOFM4uM5z/vyZ6zYTkstv -VN55DlgyUSx5oImtHcYiVGYE2P3pCnxMAFzmxUeIwipva0k2FYf10eavFqvprWHY -UYkjramXyyDli2lmI5CEWLL3ZUgCzDwWSMxkTdaBGoY5XLVPl+DNHYG2G6F9YqnI -nmQndpeUwSDspU9Nv/VeSnn+cCLWaJuqpNLNoaxju14OtP5F6GcrKsphlD2zjB9+ -KgCdlumPwrKe3KQBUOKYTnv8MMfulZHueQvy51IDZQ== -=fWOn ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/E8E40FDE.txt b/getfedora.org/static/E8E40FDE.txt deleted file mode 100644 index 12a2bf1..0000000 --- a/getfedora.org/static/E8E40FDE.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/E8E40FDE 2010-01-19 Fedora (13) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQINBEtWPNwBEADjDowYLqGZJevWtPil9jpwrN2gUE5YdKSpdN+FmeS4PaBjM293 -O56WY1vElOFbD/wO0+UsYsSU3J+Wfz/6hNnC953mNN4d6luT2tMs0Qc5LZ4Xmsod -a5BWlr1tASUBA/DPiS1mtdKm3n6WuW3fZYydRK2EBskv9tuA3LKgmm9e9OcbTJjC -lUdtw7868WqR2aU383l9G9HPoN6aR4EKgNgSefdNPTsxD04xbLo/aSHAG85fvXmg -2z2sVOw3v2oEALCIaL0QPWZ3gcCyY+FUmF8fWofSEqnHWhdrmbqvsitX+BGWte5o -F0M5m1JIDIBu7JxEeB0t0ZNoeZnWBWsXTY50qUSZjLRSsgkiSNaaaEAOvu4TJe79 -B6xfv8zn2P98lnBEuuAH5GtFsAAf/7htchKbQ72ePGLjIow4BSAr2ZTIhaRnrd6v -fKSZsL0lKp8rutUTYncm/EM6xB+fApf+BlDtsw2HWZqi14ADGM8pVOwq4rwhWWFd -em9pGosy4fW8Oug0T+WIXmYx3TRh1o2U7kBDrKUqZu6Gm57YFAAARPjgeg0Pu5+P -JEtRinhfm57s6YieefzBY/rha48sWk5jbXFKqbOCNInE9rerWnpscvSVaIhGQZYW -Za3FGhjAHU5ZEDVHT+du5X+aKqj2NZmi+5G/DBg2322d0++exyRHIU//6QARAQAB -tCZGZWRvcmEgKDEzKSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCNgQTAQIA -IAUCS1Y83AIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEH7catbo5A/egacP -/1rDtOD5YhVhxJr2rcVyMF0yFERtRVP+nb4vb5HGxms6C4nI8b0jYwLe/OAkdS5g -xdw+MVKVx1RcnN83N5YBwcCJiNiaN/SXUb+SbIWNCbfZq0s7jm9OWtZLE+WRkY8F -NKfogR+rd27YfkdI+Y/5at4e9J0c6HyiczNMfUaahZhl+XeodZwaGdjhNpiKD/LC -V/Ouhq46HUEuos5bHtk2Pz+1EUhsCuih/eeIHU2bRtRGjYF9jGffs4O9b+G/QfI2 -42IDoNqVotyLndiJBiR67iUGG8NLYARi9sDeD+B7pQ1b+LptYq1ltn4/3gbngKza -SqXFdcjx2SOjpRPOGRc/pPchoAOZS2dYr8aSVkwc6A0VRLb8FGLaVkQa3o0eAq/N -95wCE9XSFtGWIiCLjsygrTaXjOKdLzOAhaShk4KOdD2phHQ+cwz/Z9fDvtAozPvQ -o36uB0d6Y1mdDjCmtfNfYTumL1z40/evLOlLXadQjY/+GoidBh+BotSCAeQLAMMH -+yDaTBFhUIER76OVfpMTja2D2s5YmcD01LhLF4Q3DsfNCSiwe8vhiN1KzyVnrwJi -T6HwcX68lc0zXhIOADUohs950Drm3btOJP0vZTc0KT8Bvxy/ru+vkdFoqUL3Cw54 -g9fxqLowt3WXdBXuTdM9wlrBXXrSLpGFuuiv4Yzo2u3Q -=0lqj ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/EFE550F5.txt b/getfedora.org/static/EFE550F5.txt deleted file mode 100644 index 04e4a17..0000000 --- a/getfedora.org/static/EFE550F5.txt +++ /dev/null @@ -1,65 +0,0 @@ -pub 4096R/EFE550F5 2013-08-30 Fedora Secondary (20) -sub 4096g/431A1155 2013-08-30 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFIgukEBEACt9A1y7P5zOX5Kp9t5B7l+VNYN5wTT+askwrnM5uzChMBihP9K -HfebF4pXHreWWsGswA41T/cr1K778Iod14IE744krcca83tphY7q67nxSa9j+RK2 -UuM9tmq33o3T/d3HDRVPWOrXPSgqeuX5+blfSLAS6cTInmAGHwqX7ktfkBMQSGuS -U0NEpHZ/P8a4zfUfaQ+6ZYQO6M3li8ceGGLBqFmbQ5rKXZG45kWnevogq1HN+KTM -adERJHw6tiMEfeb5MgLE7GQ5Em8K1vGD+/1tgOSeWYXtfwIUP5wroE+4UqGNpDbx -n8FizldVFjvum+C9Fz2QG4tsSsjuoJQufg+u3naxS/SmNfRvKZFJLCWynET9yrru -+0Le92u1OpIgKoNUPFooK+6FvZxVA+sgnL3Uuoy8E9Nmc2OqlX/9qdbcVKYU6uIu -EPj64ZtXpVcpEyXPKQ4ouCd5kYECkVUw4odhbJGQoSbKsXb5o0CMjDS6Wyl3VStk -YoscINxX81Z9EyXUQ+WCYLzsqvp87172Bx+QhXp1ncA0yCx3qzDuRry1B9Kh2cMr -yVYRxDyD9etZp9L5bUWsshpoDgUW/OOTwtqcftP/4xkp0ATWo3SDxoxpLppOrvqt -tEeWSZ27mECu9yXn/bXRTdfBmxevgJ2rGXmZ41Q35/6P+hFj9QwqicZIyQARAQAB -tDBGZWRvcmEgU2Vjb25kYXJ5ICgyMCkgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9y -Zz6JAjgEEwECACIFAlIgukECGw8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJ -ENvq4uTv5VD1rQcP/iCcz+Mcsip5gyTgTqr/K2vkq9rMDHwrD0ZTwxBI/PTghVf1 -KW6c7rnKtG0L4LA5lJ32WLI/Y14h3EL+vE0/kWWcaTqZu978LFn5nlnJaGXJg/E1 -1dYzXHRsSGU8CS+Y3UtmVaKbO3GvVRY8h3Q4biQ1H3OTk+vhG96wGsx1zNZXRO2A -Vlkeu+uf9CVvJ3/METUEiabSHWzugU0RGEK55TV6dbu2Tkgm2uLFC0+MvQx/KUJT -2OcWj9oJAXfjCzeWndw0r1JblCXbXMN9mUhaecJz8NBjExHEL4Wpk2us9i2Wqah1 -o2EhuMoC+hDU9i3NUKAUk7ovi9sx3hEm8Sni09iyJ5f8E56diKCpxcbedOjT6tcb -4B4NJlvmxEXEOmj9dop/dgiy8JNJl6KwSUvQliNUs6h+b0/+OoyHMSDTDwkUsQ+T -a7yzmL+utqUnT6l47Lhbb1lep0EvtwiJOxcra0lHESWFXcjmQosCIivpwpiVeaAY -1cDr34e+xsBruOPIRLjOlHyUTTPAY/NfZuvqBXxv53+eHMuFqpJ/mduEXiPbBDd9 -KYKSmfA7D8mqFJ6eSwfw+uG7HALCYuPF+4KdVyisqc9Slw2nhhh6tBllf2Gt+Zk/ -oQagIhbgXIzSm5tipNDfwGR2ZMqI2UyXVWqRJPMpUy2shuj58/pZqIgDzY8ouQQN -BFIgukEQEADk0ga5SKtyxRcEA2VmWLjkYZH8UMfNYLRzM6imj4a4bkzPJijg/8R8 -wiMMmcIZavDoLerutc5MO8Y9g/laM+67UJYKcd48kLGGwdjFCAsbzyAPriQPekCg -fwKOYSkEoU0oAwQOieG8PDENrDFruodPbkeqLRwIvMOWUUGqEYwxEaHUOwIEVgH+ -/XAQcI25NREUr9zNAum1pBbA2GjJVuflk5XNCIE1JFh+1DQMUZaMe1bQqasbRkp3 -OV0CkDKnmSW5+4dgDVXZeL9+mO9E5NMKaV55lP+G1S2B5uexxy8OXF9Q9OI5JmuG -ELJVr0yHvw6R6ZZeVWUaEfkMRyljT6CrPFWhkhWZzc4pV4WEvL2RvX7Xze3HWLR2 -+PGBOrBxU7Gj5UaU80+TkCqoWNBNOCLIYhVfspdBhmS4KWaJPcgoiu/HjG7s7tWw -bvyxE9stFidpO+QI7T0FesMac2tHsxWoLpyxH+Wg3hGL7Oq4UBtg9vMcny9dWESc -o5SxLEBofvGaYDaXNsX5iQo2twqWfRwc0Dy8zZdiiGCAJB0Q/oGphyndLwUcTltQ -B+d5R7i78S1GjRpRTWQfB9s5+Uh0ideqstGpsFoiTGIDLfhe53P+7qTTuXr1cFcQ -dmWYLrhjm6FncHgZncGFzXKp9K3DcMfKm+5S6zPtrIFdKIO1rUpAIwADBQ//Y1K2 -7s1iVfbbxTgKo3/DMwXTwK0XQ4au/CuhNWefB4MPnWYw/hk3IZC0Z8FwNQco75ST -QVvS+z8+wtNZ++d0w8m5t+zuUK9CbqsDQkg09r7Q5ELtI2SfsUQYgNoqKvmHV0a6 -XbWR4yni/qgjMfJZDxzwcYJkOTLAYGd4ks/6m/btwGpUnBfZKHT2OM2rFY4o2+kL -Q7M2QkSivPhhbwszhzpv2d+XfDjZl2LCW1WnRf1AMx14ZLi9EZuMvsQTHaqAmQzM -Ekc0wMccCvRrO54qQIQXi2XXapxCbnKoms9IqUNZiLXzdIcODhxRLkA1JFLhMnlf -kr57hxj8coaVvJqTG9itLRvlh03wSLA2Qb9I1HsbBJ+Ef8hISmBnBbjZcYiszZkZ -4FsDIguzKlHDjSabzkUdtChkQGk0fJ26N+FjjnpTEOlVhch2r00lFHm2hoaS1uTu -AuOp2Y09QekC9EN5hlDAeueS/M3BIKKkZDzQ37CLFtdjRfYpUx2FiTCabVZUoK0D -5X9qN2hcF2hQhZTvz8iQ72Tfj1xs4nukGUT1A8SGPTTFyGggW8mr2aSkrGP8VKNP -CaOIdlHnIbh2vEuMmuLUEhYoh88p3pqsFDG+EoUQzAYuMsd/yINbHtKN08V3pD9m -4tR0HWqwNALpH3lbPWi4WTqWHbv4nPm8Y96KRTyJAh8EGAECAAkFAlIgukECGwwA -CgkQ2+ri5O/lUPX18A/+LoLGWENDz7v60auSrwKwbYG8/t2izc+lz0mckO1aieFs -qmHOHlBOiG29xVEKLWjFxO2nzmoF/uH754+9JiqrvfS0KoZ+QyscqiNsbDqzQ2tP -B7/vgza9j+RM++yz4Dh1xrS2GmF/kFtPGa71PJVuBVcKirZnaU+IelcYclAM7+bM -W+KwHoq/DfcKJU6NzGE3F3h3gD7TTLjFvzADjeB0uPkwa0aSRGtxqjRrkk4y+XO0 -C32xWMlzxOnauNc9DOi2Tx85hdBeSaGckiHxwB3UECBVTSMfOmLAaC7QnL6uHShW -sAukcMQzN4bLA3d4SmLnUJDezSCLp6e7BtrG97MI6Uc/WjmG9rpAG656QSS8D3Rd -juw+Undb5iW9Ry1JOrYMDOLkYNqairWRj0QdbPsYo+eBC0xYjJga5uVMwTBr5nFl -S/Q0dmb5ryLq+y3OTOPxvm+yj2QObJHSKhtbhP5FhfvcKcvHDVyQenCJj3jRZy5V -oKaBHsrp4Z4K9H9V4QUHJ5OkmHAgCViIw07XAiROWCAt6djfvuLTskfC6DJzYscl -+e1Lwmj8G+5m+n2feXFdoguQYtSxlFFf3opwLlfiI5NHlZ6Qa53+fEkcj8IMJ+td -NX4ZP2EXAvVxdA3+ghrLJauy9VdGRF9bYf8FckBOAGNL0TUZ2NgghtgzqOoKUCU= -=iUW0 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/F5282EE4.txt b/getfedora.org/static/F5282EE4.txt deleted file mode 100644 index 5cf0989..0000000 --- a/getfedora.org/static/F5282EE4.txt +++ /dev/null @@ -1,30 +0,0 @@ -pub 4096R/F5282EE4 2017-02-21 Fedora 27 (27) - ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFiskqMBEADTbsoAXpDPk+FtcwBEPZQVe0YQYdOqavfQQVD/RYAcHnJW/K1b -ZhQusBjUIec9SfGi3uBNNmbziAvpd/ycMKyWHuWQLmBgbImrqnPbBPMXmxeNGnZj -A1hjVDp0pzj2+gZQhqYWSf6kQy9u9A1mSU63Kl/tfw7+hX7Tc3I8feGAFCHcFQgE -SxUib8Mw/OOGR3Am9fKdA+K1kJeQIiZvXMcNFx+3CfoavhFdicuoT2KbcSuzRm76 -duKNHlLaP6/IbZxNiDWh8SDVpFaFPlqR/R/+wibA6e9wMf6CZ4vfUY7NKYf4tYBs -0EYdkn3j/KhJJxdb+M46Q/xwq9ovZo7XIhLrIUPuMw91X9cbvkU/a9kE1ffdpNmF -1fDnUcEkuuEqOl+aMVsUBEbAQ86yrwpDfL4XT9vwnDIkggKZyvDTZ6q00XKg3Ger -KuZtQBl/YcHDXuBlB1fzpGl8a8hq/+GeT2sVxjlYwPXjrsKd1NeP6ctQsR6gHuP3 -W5ohP4rArtM6ONN8rlTiodDLVGHBpUzIRdgr7RCL1AqB9vrdQ2MVZMasTcUnUvKo -0H4mps+x05jGao0b0Z0TJc6wr6ybHH38NVG06VX5rJZlfZchGwkWzmYxai55/7ln -1vJmk+kbdS7pK0jfmeVJ8A77XLCL36oJFCiCrYjV+ZGgvB+z08Jzwc7sgwARAQAB -tCxGZWRvcmEgMjcgKDI3KSA8ZmVkb3JhLTI3QGZlZG9yYXByb2plY3Qub3JnPokC -OAQTAQIAIgUCWKySowIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ9V50 -MPUoLuTcww/+LFPVEyVguMeU/QABEsE5FEN7kcDReZtdwq7p/aKC29mzCxeHggit -YOGlrINkJ26Aq6p+oW6w7JxBWJnKoTBYJDFzNIbp/6GbG4oKcEnWQZfTnRLTr5au -kVdWBFevzC0huraobKz3joYRIX826VUzS/A418zpnDVPtpo3x86V9f292rqi2tn9 -Q5cQC5Ck3/cjQDEwkN9gHz4j/c1oa6zBOcHbKkaZdWA2dIs6XOxCIHg78i6VQwMM -s+vfm2vbV3ACCcOVnd3d6NxIQuDLEQwdtdB2zI8R74bjacosrcafK+F2DnkM7WrL -SCiTKLJBMRDx+X2nOjT5pLuts4FC/XYRO23SMtPAMzQ852Z1lkjsaVDsjzNqCasU -B0vDPHLQE8aj0zchNBSzuHoKpXNYTyJztekWL/QXkUsXu0x7N5WhBlZ+lni6LtZU -51l7BJd1n+ZKnQ4gmjQ1ffVLbgzb9Z1MNje0s61FdKmUJQGULYqh32W4GV+RLvtI -6AJV/EmFCUEfRJ3eA8tJiyKe512wiim/WDhvzFuuPBup2Z3TufiaJQOysLlN5+HU -QitTtcd7j8ZgpsIAIZtSWOMxbIAJWbzn8gjfIj4ZDeo0ZZXH0VgDkXtpv1g8R2aR -Az6ob5YYW5VnI2UEr53x1Z7lmUhv/TUZn26IeU16jCJ80k7pJvQSF8Y= -=xpp1 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/F8DF67E6.txt b/getfedora.org/static/F8DF67E6.txt deleted file mode 100644 index 3823ede..0000000 --- a/getfedora.org/static/F8DF67E6.txt +++ /dev/null @@ -1,66 +0,0 @@ -pub 4096R/F8DF67E6 2012-01-10 Fedora Secondary Arch (17) -sub 4096g/EBDA8D2F 2012-01-10 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBE8LjU8BEACs8DbU9pRq7DXMGjbgdsplY5/kPu/yy/6NqnkraSWv7YqV1ER4 -cqRejtl7ubj/H6tgCLemy2Zy7O+ICLJhkVdybQT0lTk8OFevecntvpWlK8FQJ3BB -FJTmY9Vvdpu2FW4+YMmW3V/e6ILo5V+Ok9AJsUbvzF9tE3qQQvNUBNzKIPWx7Pqv -Rnvd4E2kkF/57xDY5TLOExZS6MIPvBQmQMUxr38X5UqNQKGvocSmVglheaQnUM+t -iRCoM7LnL4EVUvqYUX/VvQwShRgti/vPEVD+ofDwXrvdY7vZkjlZPeTs2416R45o -Zxr2XDUc1g45MI10RVLcjGXjN45ecUfCi7lbTq97dODxT53YdVSehS6WFZoyYCZN -bJrhrcs5ThLqCm/t+ZPDvlypMPiIj59MK5xoToxh3LfxzTGVl+8HhKzuOzxvfDxH -TYmIh6pofgeA5eGyQbvFcAxZR5m6P16Y/dR0W1V9GO8YS0VQrEgG2IQHW0wnPb0W -PCOMAzc+KCrQQ9S1WqwVNHdzvxrk3roC/DrWPcO3GT0T/RTU1g3GNq+yfskma0Yj -yj2a7M6+fl3m1BXeso2A3YvRY2uy52qCgoOgkndeQ6CTnvyhI15hcVuycXmeR486 -k4jVvTam7OzVJV0pvtKohK6aCwvo2keHRT4SmCPzQ6lWzVuOt+3KMY4NBwARAQAB -tDVGZWRvcmEgU2Vjb25kYXJ5IEFyY2ggKDE3KSA8ZmVkb3JhQGZlZG9yYXByb2pl -Y3Qub3JnPokCOAQTAQIAIgUCTwuNTwIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgEC -F4AACgkQ7YX84/jfZ+bGDw/9HelPP9PLIXsD//cVYq9Nmm75/Xrtib3yUHYQ5T3k -u6+wQphr16WHS0GYrWix63f2aSsPvkXor33vDBAwyUtEGOUfoIPoeaquPirGJYld -qzFvx/SaqPjEcsm9In+Ns0jiScD15Rvu8hSn0UFcnTlAU8p+iCtl+iAfJdrOFCYi -ZAZQfeowaIGvWW+ww80JxG/bIMwTB5NTRUZqghPVp10X7ZY6/4AjhNVZlsjZmB1Y -MuxNUdNdkROZ1rc7BB7N61S/q1fEJJidpAzfLMVK5t5YnpSbzi8FH/piHL0BXYQx -8JspyrBDjPjC3Z756MYSHPTHZLy61Ck2418Uv51kheyD7tADMWWRO3ALRzxw1kfU -RMJ0Uuz1AFvFu3aZnxW4yzGiif7MFmLL9FeymuI2F8F90ZrqRuVBUun1lmFfSsK5 -Lh0exZNxdCqNLgJLjerae7qUA/60IG7tnlHyFJ3Bas64IZoZy1TH+g+cYG2FtJxe -Bfzd6qTxqyZ4SJpdpAx1QJIh60NnSu24cUZhf0sBextPyhrYoLATaK1db9IX/tK+ -rrL+/pgVgthvrtxVCKF9IziMivJZe798NvVG1x92IAjzewxHzJXAVx8PB++iZMPA -xNusCo2XmfJc1eaTwFwwH3Abg8T3FRf9TGNnPvlQE/W24/mxEkAYq6ZStp15UOqF -2RK5BA0ETwuNTxAQAMiBV9BcRjx64+xJRTrST5Xhg2LDOfRY+PwGMRuvMXdMxNv/ -mfBY8h1bLxwVRjGltkzmbg+OZkGMOFYzpXHjW/KTxdBuC/jYrGDfcJwDTqRSqlKJ -5+S4n8wjTPJVbAF7+4Foe0G918MUuwkWjXRCle7NtmqVHfnRmrje/6U1UAANV7Hi -HyZK2uivYmR+R2aXnhFJWksGI8BwmlmODgZKSOJ+dkWtDPWTRpoggb9OAMhOoKTr -hJAk8vnkTW+lOFyaMveoa1ATe6ArOo9eNU5b2m7Ga1k1A6/0K88biqAy0bnoQidf -UPoLbS8klt/+hDjXKCzWdLj8m4xDVFd0m4liPlNsoMzIFAjwtxQcK5Z+vnI9gpkb -s9LrTvVxku3wGBE+yJNXHGAuyWPWt6GJf2/Mg2qgu8IiiZs5LWO4znU6Nyx8Y+Dh -uGtWpC9ahajeqoQFO5zF8FLD240LgIeOjUKzoc3PFb8R3X8k4gCSqPzDDcNoCr78 -KkruLrSAv5f8YrT/Hx1kY6Mug3pfi/vrs4tWJGKpQOerzt46Km+sLIKsvxH48YZ2 -gTxY8OxwVT2sU/zhmWT+anUqYs+FJ1+W8NvJRE4KU6G0TaNb3J2jPsytVrLqxWM4 -8vJpsOMGUdcLTDzI1memTHqDei3R9NXw6HBsrqGeZqmdU8y9s2XsGkQjqOkbAAMF -D/4lCyiu2OAQVUhc6PV10gn7bCrgL9QrMVuY2aRjStw/z5n9/yrC8utJTr5YQose -e4XUmZRsJIErsMsL7KNhC1YfYOEJ6mlEfzNjqoDSrGL+eM99mlbsyqvn1GG/4+aq -+NP0MM63KaY+hJU5YMlxyvculucO97CRGqBb7PsD9KGfemVjDZZeyIiCXztDPG7q -q2ZbBQZxAVS0jI1qA01KElZiOyzkdXE+H2Bn3EGhhDKxg7Xpf8WyZAQlNygiSS+1 -sSwwRktRrqYOsE+f194WJ5Hn/I0NvhLa8RCDEV6HQXZo6cLcqhnq5hDsdBKuNhwd -lzlKyUW6Ax/rEAU6tJed2oMXTG40nh8PU4DHdwYz/evmKx+m3Wp77oU4bWlmN0mh -CLlPVrNIynRkaJiw4ytvTrBMddcHfywrgrS6zS5fx/XTdndtd8YGqfrZOrJTlTg3 -jvZs0eQi4O+4KOl/Wd+tWR7N4nv6h9ba/dnjGTMCSFj4tbtuN8yRwCb3c5uBncnx -ZZxnOCTr0+ktV8AQ2av+OsOgjd2GkKX1YNTL6KufbTfLT1m+4nN/0pBZm4ivpd0E -6AWRlHoDBzeGE2vOEJ0qtAlneXbRH0G8iRShoBquyenNLmqlO9T54iHQaFR8NDLl -zFP31F4LOluoyU2ScaU8TsfesBPOuguirLMouh3mt0hd4IkCHwQYAQIACQUCTwuN -TwIbDAAKCRDthfzj+N9n5nB3D/9YTku3rNX4jpAQXA9/TD+sd4dvJQr2GC3n+Qfk -RwO0GCndWOiswF3s8RbGFJ18Anv+KxPRMvkvJCTQy2TtC9IXDStAjDxBci8BI+Gp -Ir9eYczCyRsw/ZZBCMAElDtJnUaztX2DBkIrC5WlS/7IYs3MI4lakbrdWDk8UaHc -GpuQHII1JCmJ5hZyRNgLTOFJ4E5GImImQm/Ub4VAQzuuJhvcv9/vQAhSoK6g2Jy/ -BPrvHpIhQrI5FVrcQR8v1s5Eb6nSXhV7uHBw/5w0JvBGMPcboVmuRq/HaSLtUEC1 -h8hn0PUqI2fw0bYA6RjMo4eLX4dIk3vf7XWYmQDpNoVb/Fn31kUyhksh6VUF1164 -U1wezyMs9DPIQ8F83kY9wzNIGv6r3vAUP/+ZGtypFsqZkMp10ej7S/A14ZsEYeo0 -DegcacD2lR/gf8ERyDbnDBfKdi5l6H1u7ak44hmkjV3Nr246hCsYxwhan2CkrHxV -MhkxIXUGa1Q1clSUtQEoLQElPIs//dtTMhvDgELOJqX/vAkViY5IZs8pk5OFEFXx -6K1IKIFjHTEKXU5K0cRqVixPRbO3/Fc0wkHWcF8GwogPZkJPmWD+I6VLdOW+b8F+ -JBqsQXQbtQ4iazcDXHdfwg5tI7Mv/S0aD9u6lubknAa1oDS5ro1QfYBKTZ+cnj+4 -inhEYw== -=v9/k ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/FB4B18E6.txt b/getfedora.org/static/FB4B18E6.txt deleted file mode 100644 index 0bf908a..0000000 --- a/getfedora.org/static/FB4B18E6.txt +++ /dev/null @@ -1,31 +0,0 @@ -pub 4096R/FB4B18E6 2012-12-01 Fedora (19) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.11 (GNU/Linux) - -mQINBFC5a/0BEAD3LjUH329eJjBCdQ60m5wG9U/QToy/sEsx6+q/012wXPMFBMCW -1h53ISj1uEyHd++qMn71u/GtWnRTwvPaxUUqdNiFQpTMAmY41JIdXmOzUYj9u3h/ -dLQJT7wKbKHQrfDnapT2O3eIyYuj07iPTtaIrUE8AZ/wVmrJ0xnLDeir2FfC3h3V -mqFo7OAK193FdufYYT5YQlY4jJrgwo7KDjLEh9ZrB42Fj4+MXgjeX3K+gel/GwiS -b/KahgB9bywUcstvDWoXfbhHmf0fw3SmRY+5B0wWp1un7uepsE+JJ69G4gwfgcln -49JrYBGFdMBuvX6e3Dw5hUZ+rRtUn911qIO9uPR+SCJqf4ttzs9U0VSdLDUfFAv+ -Isb4WOXF8UF0QbN/Cl+EMs9eiN+MNCvYWRDcnsGTeEmIDhABqwfkrOXNpMHm1FNa -P98QVc9TpBojes3KwmkTolAW92lgznYbpeN9nsv4BLT+hnBJGIegsgq78E1fa557 -l+am+qerljlHWapVB+107qdNBNxeOAUA6DdXH9B6XZju1+M4kjYrtzKraUCUMZZ9 -JebOKMerF++fjdSqmJM8LbNIwcfDtqBqMBBrbiIhlysiFBIItBOK+KCOQ+s95had -J/kFbo1doFUc+k4+ltMwsQGhRoWeSpr3Xl5ohGCnF9k9PwnlBzGx8I+xWwARAQAB -tCZGZWRvcmEgKDE5KSA8ZmVkb3JhQGZlZG9yYXByb2plY3Qub3JnPokCOAQTAQIA -IgUCULlr/QIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQB0d+ZftLGOYR -mA/+KAam9+c6wmJauLOY5dHMxd5UxsfPz3YsTKNLVDwt/ohRze4hXcH/Wt4bOfk8 -FSO35xzP4ynXpUZDfrDJsz4QNOpGTIyQCJdCHr8n+RR6IDMSVF9e8uOMoCfwE/Nw -erLD4KGI6S1+bffcEA6YTxQod+4WMEJlkLToTfEBtxksxGMoW3xdwINDT13jQivm -zktoGbOQE6zSSNVaaA94xSw5AbiYXUqfIvvJBmCPeM89ctTC5tTyNsQAN8n0QJtD -lKT3hPfT8H4gacqiecXBJ6fpuWMXY4t044JBPmOk5Nlr0TEJ3m0jmPc1A6f+h+/Y -flBLVIGx+Bw+LIrfxAfrn03XLyleDEO9kvC7q1zxnezKdcxtVXfI5bDQZELWMT1b -KVQvje3KuEZ0IrRwV3qKKucBNqd0k2F6O0ovLMorenLMyBl9SDpOWt67roJeANiq -BFFJkNuDqBtHgzgY7053Lj7VMoIeOtBpRf6WM7m8MaI0gXTgjZrhPPynqdFmDtvd -6IqBYVFvUgIqPM36Scev2CMpok/g8KBzaHKljim+xSI4wziu3Kfxb854P/Df9WZd -bCDWpFdPY5/dCnoMgTHGKLUumUMlfXif+fEykNt4Ic9Fibkzv+QSHQ5YYtoTfp9i -o7puEJiQxkQsuX/CcXU9NDL6MeBBNS/b67EqnObAIRzroHY= -=apZ8 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/FDB19C98.txt b/getfedora.org/static/FDB19C98.txt deleted file mode 100644 index bfef373..0000000 --- a/getfedora.org/static/FDB19C98.txt +++ /dev/null @@ -1,32 +0,0 @@ -pub 4096R/FDB19C98 2016-03-31 Fedora 25 Primary (25) - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -mQINBFb9YzMBEACy1RmbMa6MNIpfHYxLwgCgBVnFYCdCHZqWfYYYK14potfJ9uI2 -4Y4w+oHiLeZ/HoG1EBQiDfXHetGZECAKEYQlE7BbRBcd3An9GalKTkWzcshhHFx7 -f5JIprL0uY8x2D9HmCfAjMxoh6usWjmAQ+DUYd48iYCkahyZa0/2CgX9HIcEz/M/ -oDeQbTwzw9AQbQz382oOErfRaXE/DQrjlx2ln0iejidiOe7DzGZOH9/Foc2KN062 -A9VnZ7tU1ACKT8NxZ78RaBL3qmvMGdb7kf7GywjpRNo4J7XCQUP+nP51eCur2wMS -4mY2idDL8Ojouta79pPrviVLmwzunJoFnBcnIhbndebdxPqgOA5XAOaTdLtgurMq -90V45DPyJpkdEyptovksH7zYNGEIGB8cFmrVgUwriB0TLNJTEcM4Knbh4imfTX42 -vCE+rEHn3YVqubG7rggibKznJbflwQcqOYZHLlPGYCxO47aaFUo5qJN7QN3lxajb -SzL/SdoHrVL67unzmHyktx5uF8Fv6EDgUV6NCb/IBiEwhR8YHi86NQ8nsI3K8Zhv -EnIxghJQD+cn3ykthwqYmZwi2PJDBiZsOGf3iXbalAjU3JVqoA7mboRPR+IBXQxK -xvAEpyIGeSUN8yBn+JVDRwZ37kkUVs2AOeUwMlnfFSqYFfmqbeQ73A9ECwARAQAB -tDxGZWRvcmEgMjUgUHJpbWFyeSAoMjUpIDxmZWRvcmEtMjUtcHJpbWFyeUBmZWRv -cmFwcm9qZWN0Lm9yZz6JAjgEEwECACIFAlb9YzMCGw8GCwkIBwMCBhUIAgkKCwQW -AgMBAh4BAheAAAoJEECJ2PL9sZyY1TEP/0u/v4g8HEdl9gqlhV179vXCJJiGtzB0 -7IGAu++mrsxBrDpqPZTEs6dG5MyzvhhHcmHYrZIiicPAeL9xlZ75oIqQuvjDncoM -kROSGvtfUnvocZhQIPvvkgWe3UAmmP3cSlVzu3KtbTpM+KL71incWo4Tentq9L/f -vsow7vvGbKUMoSSZbAMfjJkzlzSDNlFtaRkrCBQFJ76EKeggjnEZ8H0cowCdGuyv -uBoxQeeQM13b2T9c/uyrXCIcasaOTIKTcqTjbJUTIC2NIZ8OHjtlxZacEaN3ml1M -lNRtbIvqzbtv+sb+DsOVTyd1XIcxU9s+TDKvUm0OBNvj3Bm2BQbi8RHyLFbHWvhx -Gjzb8Wb/MnlcdTlk3M2iPv8dWHXjEM9n9TKyStdpBD9X3P/Gy2gUquHgkl8p+r8o -xmzNH534mKH47kPL/trKInKwv0fkBwxvuPgHG0n79eMHQenVA8gXzG4P6JkcyObA -6xGEEQ/wXFF0gLksmwFWuPm2GcnOI5KmGNgDP2PMhS8/cfJfW04a/tL2T2zr4CmE -LynbOvY/yOJk7/2W3Cb47+yhqo/htrpJDP6n6zQNNk3+e8EVgfhkQqFxom8yCmEP -pW0gBFeE83VoytYPXRkavwmFR+tplyZfOkXG9gysTn8SpRp5+B44O+VeaZumanQZ -kRFmBygMR6M/ -=NrXo ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/FDB36B03.txt b/getfedora.org/static/FDB36B03.txt deleted file mode 100644 index ad72706..0000000 --- a/getfedora.org/static/FDB36B03.txt +++ /dev/null @@ -1,33 +0,0 @@ -pub 1024D/FDB36B03 2010-12-23 Fedora (14-s390x) -sub 2048g/E363096B 2010-12-23 - ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.9 (GNU/Linux) - -mQGiBE0TPYERBADuPml5KI3zlt9D1M/KF3jZf5Kl0JP56uoh3W7wcZufC36QMJx5 -AU9xOoBrbzm/13MKd+6GQN/2uT04zRssV6bgOXvRJ4AY33qgLdlMzuM6v7/ocz47 -gviE+IjkpM0i2bZH8hTLXzIBB76MO3HSS+k4pEdWABQuN1TJx6slP3YnhwCgpHki -k81eohsra6jHGAE+3tdUP3MD/AqBYVn68PpkiieUAlvRTPUj/GfAqRT/WKndtBAn -mQdwUzFyfpDeaJFYcXp3R62GGabP4gYyXb7vb3kYD+ruMp1iwoxxNrCDvydRBTiJ -eiZPH3IZhec6ma2I5/XXJkw5d0kiXrwr0KFQIuoc5oT+wh0Z4zr0N+NGzCEDK7Ag -ElWZA/943e5SCEzr/ERcHXxs0xA9w169aNJPJpJEBp3Kr3rh3uz4sOURBwQFz0iJ -Eem0diwd4+0JX5KL8HK+R+hncvBE7/0WXhynSZEAiZTsmjSkTfwJWFGehaZRmTsA -Hw4jIRHIxzMg5jIyF2/nN9uCqKcH839kSkOb8dbPeKbISQTy0LQsRmVkb3JhICgx -NC1zMzkweCkgPGZlZG9yYUBmZWRvcmFwcm9qZWN0Lm9yZz6IYAQTEQIAIAUCTRM9 -gQIbDwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJED5ynKf9s2sD/PMAnik90+bX -AFuKKT5XGbnYKs99pBgEAKCBp5sZBpyxXnHr4r2DCknGdQRZhLkCDQRNEz2BEAgA -zVuL8rO3cmEIJattkBU4jzZfFupMKdHlrvRcZ20ChBO0Hm4F1keIsnal3m+oTd3Q -DUggdFHrGSgJo13yVOtXPStan54QJyC/JiasfLOqxo39z4JKxBHwyKovOapbxeVj -G2fLillwwvneQGDYponedIUgZPK+Bck/dwi1aeLt2zfioLPp2rLHSXoHil5K1VMz -BsG4TFI+Cd2lu2pTCBJpsMOoIXwtq9g++E/OtHSkj6FWIujtSTV7FrJw+KiMN3bb -Vz9D+VU+G5OT3lecsrma0TpDIF0TwUStYkDU0AG/TdJKxFAKm6rJhVtcs4qkIYAf -b9q59sELMAYHtmiPK/znEwADBQf+Jj269rW0Gl37l67YeqVTtxVyYWPgXNgMnhk8 -o+UP8/WZyecD7d4wjNEZkQiAcSy1jg0X4aDOS/3YEtKYI3iGmWiiJ1OglxeFjIpr -ONbKD5bsOYzDHqDm8Zy5bJAmpg8YRReUtgJdJB+bIVMRxufzsJdwXSIFB0HBu9WK -EhzzOaSzTrtXBcb4GGkCo8UTLLQYgQPWrypEzzoxphuiEWmgFeSbJkMMsDnbHRAv -sDqu+9G0K6qdQ0QAQQH0lT9NIxxI8mQmFyrbHCbuj8mJWzIb5AUCceO9kJvMhuJr -vSAJwvPlqQgV2Nae4QgOTFfqboCdBBnc9H4/tP1FY8+LjAHHFohJBBgRAgAJBQJN -Ez2BAhsMAAoJED5ynKf9s2sD7mcAoJnYp25HsuEjuuRXIeXgzUPUDaD3AJ4hg3yA -cpL0o3mqKt6FgyWnUODy8w== -=Sr74 ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/checksums/Fedora-AtomicHost-28-1.1-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-AtomicHost-28-1.1-x86_64-CHECKSUM deleted file mode 100644 index d5bedd2..0000000 --- a/getfedora.org/static/checksums/Fedora-AtomicHost-28-1.1-x86_64-CHECKSUM +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-AtomicHost-28-1.1.x86_64.qcow2: 642151936 bytes -SHA256 (Fedora-AtomicHost-28-1.1.x86_64.qcow2) = a91e30ffc0126cecceaced79bb28ebfd5427d74236779e36419aa044b81cfda8 -# Fedora-AtomicHost-28-1.1.x86_64.raw.xz: 464506420 bytes -SHA256 (Fedora-AtomicHost-28-1.1.x86_64.raw.xz) = 92e49dccbe53d54724b5aa404f2a88d71cee2178312d48bd4a19b80e514643dc -# Fedora-AtomicHost-Vagrant-28-1.1.x86_64.vagrant-libvirt.box: 610327687 bytes -SHA256 (Fedora-AtomicHost-Vagrant-28-1.1.x86_64.vagrant-libvirt.box) = ebdf930ac3f350f977e009336de1857c7aebc6812eddc7d26ae49593aff77569 -# Fedora-AtomicHost-Vagrant-28-1.1.x86_64.vagrant-virtualbox.box: 624721920 bytes -SHA256 (Fedora-AtomicHost-Vagrant-28-1.1.x86_64.vagrant-virtualbox.box) = 2ed7d5a8dd8cbc77eea146d055f4d573677d60579ae53d237c40b8e6ff858a63 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xrAAAoJEOCOfmKdti+xOzkQAIpMf4cHSlm+idLl9ZSyw3SR -3291GH/vmeORYISVf1qbZNZn5NM+59kj48EXg7X38po2SfxzFM/i6dfv1TYR2lL1 -75F/nQGCn0UKiqGaDxW94N0VPeQFAtTak6C8zyDH4lToAqA43bapTXiFqh9Bkmwq -3F3z0Zgglm//CTq1gKbkMc3/nYY9GbIPEWCaYIe589AgfBmH7yG07CpUFixLLI9x -OduFddDuNGNCDgTuWTF1i7jwfgSZcHWs3y1K49UEQHYpWbOMwTodWLOVK+zoV8kW -p864ihTjjhhPaeR3sBNQ6fkpggn0yfxUNh8vYTJwJSOC4nF7/EVSP2JoG5BCwVUF -q1YH9xCRJ+AASPgCpl4lY/1d1fYu6cd1xLDvU+7chKv1Gt4nBRbYrfVqczmotWbp -OdIVxkzgxZpG9L2GEGNnvv5C2H5Tc7tsDgeOZTCxAYNDh0/pEoTyM5kw41+ekY2y -CaYHN6ceFOJRlYXMOlCNAl9am3fSCu3065YSekvd68ovF/kWtoMvFRfBAQDEXIty -6B2DC+pzqNpaNUVu57pM+C1Hp3TnoDWzY60kPqsKLgPBQwslSAiyZogkpFQBkmhh -5tRBijJaerGLjPDP7kxxhCkbiOQpTxucwNgWkXsUPFV6tOhveLuQ4q4+Zneb0kfR -NkTIstQWFTt8rkK4SbFB -=WBPW ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-AtomicWorkstation-28-1.1-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-AtomicWorkstation-28-1.1-x86_64-CHECKSUM deleted file mode 100644 index 77d1fbd..0000000 --- a/getfedora.org/static/checksums/Fedora-AtomicWorkstation-28-1.1-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-AtomicWorkstation-ostree-x86_64-28-1.1.iso: 2090860544 bytes -SHA256 (Fedora-AtomicWorkstation-ostree-x86_64-28-1.1.iso) = 3c57cef9cc85e73d6ecac1f7ebdb84cd9b6f2420da0667b112ce8cf20c5404b6 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xqpAAoJEOCOfmKdti+xMm8P/1IB0KRAHN2/tU2BQWi+CW8y -qBOyjrPZLHObA9HVoIXLVdeioh7agCmvPDRLY77Xzv4Tx77jO4ZMwuLwVuXNpSVX -nc6iLoqMVvbQJshbWJJVbT0RL18L4Pwktv6gfMAz4SWyywgL4QmjR5WBR38vH+42 -3f91N856pgKo9uUNZooMAZHf8tkkfhPgn9y2aN6oyDP/KZef5jXYcWh+itxxT4XJ -sSEcAVAcEd7boKbm3PIkNTwNqPEVSG8L4LBSHeVKKs3WzXDs8b5c9bj067yJhPvS -jM2fRrL+pmO9MMzL3bG4bOflYmkZdcDFIbMYcAxKTIe3oDSwR9uD7wCIvoJ1nCMG -6lEzftFL3dNJg1/xf5mu3MKeFk+JeTvSh+XWAJun8o3CUb8QtUxmwT79F2WSBANL -QGP55TB3eceOlUficSU/oM+UaFiMrsQh4qdLSY5G+ul02wEjMLRd7iRIrU+HcOrC -/XFwCH/pPPEXUqtZsfE/9CsZbvqrd4IM4t+FowWwx6AijBqWUI0yPl/KA5w6fI67 -X6aLBUJJbHEpg4LT31gK/hwTBsRIUPGfueRTowAqVrWta6MIhrYVI7ozqJVtQX9H -IbWqdclkTrw6H6cba2xTf1aFlXpqrEXuOiGcH00wnY0XMuk+Zkb2alTZZyc247sZ -5lMN3YaklZX+lsBlvMF0 -=foJL ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-CloudImages-27-x86_64-20170929.n.0-CHECKSUM b/getfedora.org/static/checksums/Fedora-CloudImages-27-x86_64-20170929.n.0-CHECKSUM deleted file mode 100644 index 3a0d02c..0000000 --- a/getfedora.org/static/checksums/Fedora-CloudImages-27-x86_64-20170929.n.0-CHECKSUM +++ /dev/null @@ -1,16 +0,0 @@ -# Fedora-Atomic-27-20170929.n.0.x86_64.qcow2: 618059776 bytes -SHA256 (Fedora-Atomic-27-20170929.n.0.x86_64.qcow2) = 98daa14bc051623f60180099f204f0df075017a25959b257fe75a940fd0687cc -# Fedora-Atomic-27-20170929.n.0.x86_64.raw.xz: 467036968 bytes -SHA256 (Fedora-Atomic-27-20170929.n.0.x86_64.raw.xz) = b91d35dd15c9140b127eee87d3ef02677985d7de54a788aec930cea7f4e62f90 -# Fedora-Atomic-Vagrant-27-20170929.n.0.x86_64.vagrant-libvirt.box: 588546133 bytes -SHA256 (Fedora-Atomic-Vagrant-27-20170929.n.0.x86_64.vagrant-libvirt.box) = d4457588bf161435d6951e762580c2e10b6fbcf0bfb5cf8a0822c890dbf09513 -# Fedora-Atomic-Vagrant-27-20170929.n.0.x86_64.vagrant-virtualbox.box: 602296320 bytes -SHA256 (Fedora-Atomic-Vagrant-27-20170929.n.0.x86_64.vagrant-virtualbox.box) = e084dba3728e73191f8d59a871212ea46d27098101ac9c1a302acd1b9c5934e4 -# Fedora-Cloud-Base-27-20170929.n.0.x86_64.qcow2: 235996672 bytes -SHA256 (Fedora-Cloud-Base-27-20170929.n.0.x86_64.qcow2) = e0f26951f521d719388f49d73872af3d9024c8800d55ef0d4205094986ad1df4 -# Fedora-Cloud-Base-27-20170929.n.0.x86_64.raw.xz: 151086768 bytes -SHA256 (Fedora-Cloud-Base-27-20170929.n.0.x86_64.raw.xz) = 42b1941cf19f793ede8955d17151f0743fea47e3cafa56db2c0b4ecde7b383f7 -# Fedora-Cloud-Base-Vagrant-27-20170929.n.0.x86_64.vagrant-libvirt.box: 218667474 bytes -SHA256 (Fedora-Cloud-Base-Vagrant-27-20170929.n.0.x86_64.vagrant-libvirt.box) = b7fa76bd2c9da0f180ac6ebafa7eef0b6bdd20500aa1fc8f29bf8783762b6c7b -# Fedora-Cloud-Base-Vagrant-27-20170929.n.0.x86_64.vagrant-virtualbox.box: 227502080 bytes -SHA256 (Fedora-Cloud-Base-Vagrant-27-20170929.n.0.x86_64.vagrant-virtualbox.box) = a414ce1eb4d11100e944910848a0aa163eb71bde88bb5e1a33986e8f13bb6027 diff --git a/getfedora.org/static/checksums/Fedora-Cloud_Atomic-23-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Cloud_Atomic-23-x86_64-CHECKSUM deleted file mode 100644 index 3e81c0b..0000000 --- a/getfedora.org/static/checksums/Fedora-Cloud_Atomic-23-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Cloud_Atomic-x86_64-23.iso) = f2aec9cc2a690c763e5b3a3b7c4643c26ef11ac7fe75271eafb960ed9b38cffe ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9NtAAoJEDJHTPg07Jy6h+0QAJijwPaJsILz8T8Ejjr3kLx/ -VZCAJtQ1XbAmg8xOQEbgwzLaWrf20RShtg325ZPI3NyzAa5WoQ2x5RUGipWiGPUJ -HMqFRcIdZ23FlPpXA1n/0DCpLynddYZDXT3va+c/c0PQkiWGmsACwsnygvqlFMLo -7b/vhFnaBOpRElcGMKqlDm45qjrLgrFqHO6JB0NrMFqfeIdHQFnvZO+LERSCKrlL -ZcWvn4/EBbn6ERi0Szan35sdVGCfkcJByivy5g7jW7Kkce8QKeSFEVpOUoVajGcC -1/nT6NiBvWW9VCfdnb1oZkpP9XK8ZEavZIZpks9MVIRgLuDiUXl1TZpbmOX/bCZZ -2Z4TGS24Z1Gf0y1FHezMi6tFR/si0GIHRYrzSi3E0IgPV3VGtaJBd60GSem1N6zx -2gsnFsMlTcT8sbSCqCNeivq4A15CcjLz1+TEgLzI8Q3WtMq2jJHBxHh3FJtMrE0f -n7jFGPsSHljNUlzJ4HO2BrhPtMaz4pImA4B1xi/En4wb69XkeKUIbiKFJqfJgRvf -WbY3+c+Djc2pcYIJy11ZUiv9BYZvVKIPoG8LbrjLvy7jHYWXkXE1U3AJvS4RF1pH -gQWRFz0S/M9goDu1qmRGUeWu+7/gEUNmpc2zyRsoNyWJrTA0322OBNbKIx38lePC -9lYsQLUS2DBGl0vaOXbJ -=La0T ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Cloud_Images-i386-23-CHECKSUM b/getfedora.org/static/checksums/Fedora-Cloud_Images-i386-23-CHECKSUM deleted file mode 100644 index 27c4579..0000000 --- a/getfedora.org/static/checksums/Fedora-Cloud_Images-i386-23-CHECKSUM +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Cloud-Base-23-20151030.i386.qcow2) = 97dbc539e56ab2172c9e926e395f04b2378026c440000f510c1938bec8a7ed11 -SHA256 (Fedora-Cloud-Base-23-20151030.i386.raw.xz) = 5900c6b0b824c14ab25a7e537834ce5b6815ccfe9d2024f0486da510aec0e3ec ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9OaAAoJEDJHTPg07Jy6XXUP/3nVdehHru1cBjQNn92hPw3n -Z0M38dneiddA/WSUxAXyAzAEvVzlrhs8Fm5mHvGK60ctlnvXq73ekSr63LcBd1tw -gndhN6CSxWYd5SVUtZGalf1X3pGZboRwtaT0F8yzshU4GqCp/BgcO/1BuXo18sxY -xUZ1Dcfnues1OnDSp/2xtTrb3QWahCJ+petwlF1pBXOo1K3lE+6HqlSRrKTdIE9x -jpWSanjZdN9/zSTw6akhjfiVFZ1Dh/YT92F2mdxzjZkjiSpDL9CdREDc/LB7FXKl -DgLEuil2lpUBofppMWOEo0In3m+XYr8dfxRh2w0wmmSniiMjn3SmlMaTHFpHa06l -yK6KvqiLebKnkI5Al1dJm7hyb9uxpOzZgiecGxQptl080PMLmhNGRWfl5c5OoFu2 -1AhXwfpqAeVbVJVGbQBdTm3aYvapUACzDssVttiUj3dQq4251Nhuo1+x5hNAFccr -jrT3ACQrdOyEWADeMz+jhbqfw3RIqJ5cq4DSsNCROR3M/j/eOGRZcqiYEY5PWRHz -P+A3HuVy0UiRuyVZaT+xKJOArcrUkgvc1U/5KT2vXBD3y1ugQjOXeV0Mun/p+qp8 -9a9rlYuhHV8pzX3sSLYMMVdRA3dp+VBABmHRD5XmOjmxVJvscdPjmJDFV0RYP8pQ -l7Ss2WG3sUpfDjzHh2/C -=iYso ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Cloud_Images-x86_64-23-CHECKSUM b/getfedora.org/static/checksums/Fedora-Cloud_Images-x86_64-23-CHECKSUM deleted file mode 100644 index d97fc44..0000000 --- a/getfedora.org/static/checksums/Fedora-Cloud_Images-x86_64-23-CHECKSUM +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Cloud-Atomic-23-20151030.x86_64.qcow2) = 57d4025915cc83e948d155e44c582fa154df33d801175fcf50d69181505b5433 -SHA256 (Fedora-Cloud-Base-23-20151030.x86_64.qcow2) = 0c30ef4f0c2e1bc621193d0ee42b7692e19e93aa286abc6e08683397f35d7b0f -SHA256 (Fedora-Cloud-Atomic-23-20151030.x86_64.raw.xz) = 7703fc2dc2a66f37a170bbcd3907590b7266ad2d41e20405bbe89c8f87a245b1 -SHA256 (Fedora-Cloud-Base-23-20151030.x86_64.raw.xz) = a875f20b95c58683079e2e670d0f113e67044aa2be3981f08fd5aeec993abd2f -SHA256 (Fedora-Cloud-Atomic-Vagrant-23-20151030.x86_64.vagrant-libvirt.box) = 1f8ab69f19c6ab346dee1c9da1f194025da217d0c3fef459091192f9622938e5 -SHA256 (Fedora-Cloud-Atomic-Vagrant-23-20151030.x86_64.vagrant-virtualbox.box) = 698e35796e02ffd29271d72db3164d2c1a20a268483b1f605d4337e9698f7808 -SHA256 (Fedora-Cloud-Base-Vagrant-23-20151030.x86_64.vagrant-libvirt.box) = 3f83585eff2f093c24a3197949038d6dc8eb19eb2c5b2a7b586df29e888b8afc -SHA256 (Fedora-Cloud-Base-Vagrant-23-20151030.x86_64.vagrant-virtualbox.box) = 7dbcf264cb3d31107fe74c0553ceb335bdbbe9c8b44d4c7c837c0c593b727f8e ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9OXAAoJEDJHTPg07Jy6mfkQAJoNhjtgmt+x3xmzccL3rc5f -ayuG8mQnfmdaqqlu/Or1O1jCwRdcZI9ILWwjCiocbkSJOqxbYuEw8IqbUa3Pr4ku -gz9ceoLT9GMyLWOtz42LgYYsThYnrXwhfWqe0jKLGs00tvpvFBz5rSjLCVROgGw1 -2TJe7IZyIyYSPod+m108pLt6ZMSeqO9dOn/7JJRcyfosekWNHPAuoZfEK4Hi9wQG -5dtCy09P2BlezeBPu6XI+iANGcZi4ArfJe1CI/LHbAHPQu5Wcap6y80j41g+cvhc -NZUw8ZhhEefikqIm1bfdbCLKdNPgt1fzljqoBsKYlW11Sk1daOfZHbrVxmupwS4i -QXPZt5utM9P45E0Kp6ZEZoPYGT8PgUiKtHCr9Vefpmdg9EHSjnYZ5vI2xZhEiqAo -pXgfpY9eQNuy0qfb82vMcCVkjVOrOww9bhuVdGd8nj5w3FGoyyFye/yLyux6i4S9 -CJJvQi4/W2s9GV14AGW9pDoDMABw3O2XSHr8ak9akJltE+IN8I5XVNDZ7KwXt4ZF -2OyJVs8gCjv3M8CLRU1eZ2ApOF+Qm3DhhFctOlipc4FMJgQthEquuPNzUTsjqQ1l -lbiahcoHyWbZxUov1oaqQ8eq2BlB3E6oEcWLUlb53V9eGaGN7RmSAuhc2tH7mrZy -iS9siEIKYEdCx3gdEgIQ -=ngPa ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Cloud_Images-x86_64-24-CHECKSUM b/getfedora.org/static/checksums/Fedora-Cloud_Images-x86_64-24-CHECKSUM deleted file mode 100644 index 9040c16..0000000 --- a/getfedora.org/static/checksums/Fedora-Cloud_Images-x86_64-24-CHECKSUM +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Cloud-Base-Vagrant-24-1.2.x86_64.vagrant-libvirt.box) = 02526c806d74e031c4e5a1787419e4a721d46818780e1c7b961c8db967dc8e67 -SHA256 (Fedora-Cloud-Base-Vagrant-24-1.2.x86_64.vagrant-virtualbox.box) = c7d48f240eb0d27d577f19103604e0d821e19fa0cf50192cc6874b35f5cb8c5d -SHA256 (Fedora-Cloud-Base-24-1.2.x86_64.raw.xz) = b7aea19e2dbcd0e614a5730bee936b913e75fba673e4a8e475cbac262579bab6 -SHA256 (Fedora-Cloud-Base-24-1.2.x86_64.qcow2) = eca5113d3611ae5060c85032f5674fa9e1c237ff66cd2f47352a23e6fdfaac38 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJXY07eAAoJEHO96YOBtGUhfVIP/0oRY3A0n5wPo1tJ+NNYDIjU -1V6NKnAbblbU4R/QW9PeGX5OhartmqO7N2MGzzMGvyEidZyvwtAM0L1n1o6B7o+B -3SImAsqXSCnRQbwGq/ugG+sXfp+DoApNAxeH+Jyom2b7Th+9ab0Hg9fy59AHdpyk -phfSfKa4ZYV0GrTD1ALl3MxUti3Is3QmhyTeJ6ygpf6PtTSErZoXld0LAzSuoMVC -4VdZ7yrE+x1sjLTvQecnPz6WXKUnHRo78nop+PIGC+PedgqALxRa5DOhDuPHsMT6 -kZ4TljM4Hk2Lq3XE/317ZnBpFpHyzaSH9cHM/wKd+IhnUeGtFhnxe/l7qlCfMg9J -CPfWdjw9keIUII3S8g4YvGcR9LUKw37X4Z35awYG3RqxHfmJWjZuCIItPiuOjNOE -PhIKsQaIpH/6BVqnz3/LikAzvFuJdfbAnG+ckmCW60Zl4qWmzzNye5OBDc8cDC/1 -SURX8CAYHARnEUWQ32SscWdKdn2yDaacZTNFFVg2xBfQ8PoCi9ZYEn9R9JJI7eVG -EY3GN0R+FuC23pN/uS4hHfQICaMlk8bp3v5LdKMdsojyocTGtrfZV0J/Pn3jskCO -zE5ufl0uhxzcU8wYFXDogA6OOsC9eyikRaxXVUclC0SnLncC2T30BLBRsUAt5KGt -i/s5PyHI5X4thoS6emlm -=P7Pn ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Docker-25-1.3-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Docker-25-1.3-x86_64-CHECKSUM deleted file mode 100644 index 97b25da..0000000 --- a/getfedora.org/static/checksums/Fedora-Docker-25-1.3-x86_64-CHECKSUM +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Docker-Base-25-1.3.x86_64.tar.xz) = 0d1910416a63920b0c2d8398d37d9440e74283ba83ba442dc84047987f7d1165 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJYLwzdAAoJEECJ2PL9sZyY9u8QAKal4bPzyW2O0BvStXPk22C2 -F43wS/LttP20AXPgkbjkJnUs1A01eAZgTL6xwIAG9UvnfNcbemL1cdxZKKFgqz5i -4SduPrSmMtRoaZtLYA4Oyd7Tyyjgt7fJeYM6EZ+v40GEVpGHQwogyIJUS8LwUXIz -fGkatl66NqIqSi03NX27gmbgQqGeFGkHOu2wkpxDCNcGivv/0qYXSBPngBFsMnaz -0Fj22EbMQugE/fUA5xZF6KT6YSo8NKwiozz22vqp63duORPQhGNY1A+r8VKb3nCF -xbkMDTxm+0ZDURKuG2h16fe21cAT0TcxDkHwGbOv4dUDBOxO8ZfCWkwoklnXJrSV -6oYa+9EE8ce724YETUsYzfpUC2JT3Dbe0AbkHDX7hJzOb13DzT1+h11qX6OL21dD -79/NxnHxaqriD18ECgkuITJr4kD0DZBINkg//sUfcyCszU/GlecVsD7zP8W7KTPk -xdihIoRQt2PfT4rtjXFwBgJTzBsPPFuK7ymuBLDjBbWpaIFoEXtIlvaZDycxoRb+ -XZ8UPIBCc6TItbo1dVd/NrQac0xUcKfSWilHTwmmvt+zsByHZHX+tBC+iiwnnOr9 -Hq+YVYEy/e9RZUh2DXbtuQ1yL9/YU5D7DsumZG/Q20Ets95uHYHIhVmPLypz6Smy -4kfCQlrj8UyEzVBuGWl+ -=Gvd8 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Docker-26-1.5-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Docker-26-1.5-x86_64-CHECKSUM deleted file mode 100644 index 8729ec8..0000000 --- a/getfedora.org/static/checksums/Fedora-Docker-26-1.5-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Container-Minimal-Base-26-1.5.x86_64.tar.xz: 21666584 bytes -# Fedora-Docker-Base-26-1.5.x86_64.tar.xz: 43913448 bytes -SHA256 (Fedora-Container-Minimal-Base-26-1.5.x86_64.tar.xz) = c8b427ead6823cd561ae7a875a852ceed75b900dbb56ca4253c52d83b1485fa6 -SHA256 (Fedora-Docker-Base-26-1.5.x86_64.tar.xz) = 7865bc47dab07b59e62767445f243be797e9e7289f57467f82ffd5d9573d38ed ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJZX6U5AAoJEIEqa0tk2rhdre4P/01CsHYThQqEnHM3tIXneTZl -exzS7dy1RuvKVKAF2gWoPYDnS4q1xN0Fh7vDJjW4xxVwxVZ2PIEG5Je6V0p1yOwW -eiD0XFN1FMcX8Ci174Am6z7JegiRNypQEGiNgR1uQCNSrjHZOSjSsZMmhRskIfJA -JFXJtokyPJoSnsPGzgIPooaNYAU1KSBH1EwugZ5TgioVz/CBpji3gAJ8Nc/qidgJ -nOCdW1T9EvnVT/Ybtf4VCLSQwmU74LfgWwv4OoqmMztmcXidD/LsQKwJEceh7TvG -R+yvyZfUCfDgjguvmYxacmQNK13IQvgyzk1CpPc5FynNPGY15rcpzombQSNAjoF8 -Crs3TSzhfmtOSdFT8I0nPD1laCT0ttREPdk/iXwnXZs6Hgd7Zwj6mX840amlfnOJ -lCvCASP9YY3XVv8yX4yNZRsjTp2dxzMgZ/ra9JkT4s7yoYz20iUrUwyt4UTLRc3Q -f9FHcSqK7F+I0kyhkpYcKq/imvuuDu0II555NjE/g0HFVSnmPTDrrwLIWJ0Aq3N8 -c77fKCcVZYNDCi8u9Zf9De+sVQGq15U3Neu+A4izDq8VKzNZeWbsMyHdHyoeqnfU -UWLSyO92Yqug9oaCCreSyaoQ3DAL1UL/E+Dltncr4KKjw6asKuZ+dlwSmTegiZxZ -Ago0K0u3cBo6MFrC44j8 -=nsHb ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Docker-27-1.6-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Docker-27-1.6-x86_64-CHECKSUM deleted file mode 100644 index ce7ec92..0000000 --- a/getfedora.org/static/checksums/Fedora-Docker-27-1.6-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Container-Minimal-Base-27-1.6.x86_64.tar.xz: 22116264 bytes -SHA256 (Fedora-Container-Minimal-Base-27-1.6.x86_64.tar.xz) = 6de04eb93d3af0aa37b12eb22174b1bfc8ac14e8d285bf3053def218e22db2cc -# Fedora-Docker-Base-27-1.6.x86_64.tar.xz: 49823768 bytes -SHA256 (Fedora-Docker-Base-27-1.6.x86_64.tar.xz) = 4b9082788f961ae6798c91f9c31446df1fb0907e3e37e52626e16d977ff5941f ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJaBfRoAAoJEPVedDD1KC7khWIQAMv5PQWISGOSlg0AKLvO8uCG -oVJcD1oHJbATpkyXWMM+ePaEgBRbgJntFko7TyIK0JGksjdjvxidSet48rLyy5qJ -9C3lhpMfDKi0bxSwkUuQMxCwBdlm6lMzb+GBKdFmBF1N7ygBGub7SPnXCqziuXaw -ARVA+fKuLRgB9EeA3vCv5iaobxMTysYp89DW9iD/oO/zSNNFuu4RC7T3h6Bxd9bA -QmbVB5MuVxvLGkOmktYPDEQ6+rTRBPnpiKQ1pMSLhk7kThwcl1OTRoZazA/IfTj3 -sKwk3zo5Rkfi4eZYKznqmeCrHMIwQ/IV1EzT6JpdTuNDSoQJcDTuxbIoytieEoOG -vZDDkJ0Cx6pUx+Xsfc6/FIrQmmybSDH/EGW+nhddxkr5eAQ7bn37PSgT4WHkkZhC -hlmRls5GHSM2a7Vl7IKkj3Mc3AwPymClRYltlzRfoOtRZrmx25a9GeRZjsB/l9Sz -LVqgmzM3adVfZ2CaJXBjW8a6+1JDAzCklxQH08JTubvtVI1dPSfRaFDkFyb8iZKX -ijCckWwGV62A6w458xVuyObPaR4cswP3KvN06JnhiGB1Lx+6R4IYLUjsTiexxZSX -LDniWsbP3aquX4Cp3eOCjda8dyl2pOipXkdv+EfX6bJGAygLDG/1iHgJfORY8MXM -F10p8oiXerdJQuO5tvV+ -=HPlD ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Docker-x86_64-23-CHECKSUM b/getfedora.org/static/checksums/Fedora-Docker-x86_64-23-CHECKSUM deleted file mode 100644 index 2e72c13..0000000 --- a/getfedora.org/static/checksums/Fedora-Docker-x86_64-23-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Docker-Base-23-20151030.x86_64.tar.xz) = fea76ca38112a8ac68ba933a43a574ad404307443ac5ce066a80aea47edb5d88 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9OsAAoJEDJHTPg07Jy6eR4P/AiUetCcYb510ic0BjTnL03n -sg/7fXTKuvBqD4kSGEeo4kMjCt4fTOvNX/VHatx3eX36tKk0ajH5jJEhduOOFJmr -QLzZGLZeTCARe03cr+J8sSUqagKIPovv/SbBN3Axcemc04FLHlux+lbI60t7Jbee -vcehmxO73EGQkFv/BCOSVMZmmCqrdFSUnpLE1IOMi+J6fCJnGzJKDUlpJPIC9r0s -OMLGqXvEUOoWP9c8a2LHUMvkfZ+Zacyt0AaobEcet0gQwE1TNLGskxYfDfy4vDTq -11bgglmUTKJm4NhL33o0tvgXIwTFcRvGsL9bsWj15O8fDNUr5Tp+vQ3J6zN5IDAv -VEbg5N4gEYl+z1m0ARCniODsEmIRwBEmAjM8XSSl3wpJc9v1+eTFPyOBGV6+ssdT -h40Em3Es9Y5bQ3q/rizGgWa8UE2yxdgOFZZGttZ37pboWXhwEzrnJx/3Ll/cEuJ7 -Pdpyozsoc+kZjCMNtQJOWsWg1J7QtdbHLfcwLvJPuygDROmsH7UqUH9Cp+q/1zNV -nbmM3KvxsQO5HzmhO3NMpwwRtXvO0hILtbMMaXeT06EK46VtQqn0exXCg78girDF -VqP03S6LNr48+VLt/WhG9wCWs4pfXSvXvY8REAJ70RkZAy73ws0wD2FvKhT5e0Sp -yg0fsNM1Yxe/iCF5vW7H -=2J41 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Docker-x86_64-24-CHECKSUM b/getfedora.org/static/checksums/Fedora-Docker-x86_64-24-CHECKSUM deleted file mode 100644 index 6401401..0000000 --- a/getfedora.org/static/checksums/Fedora-Docker-x86_64-24-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Docker-Base-24-1.2.x86_64.tar.xz) = e92a89c386fb3882b0aaaa617fada2285c4b95a5f0e89ff4f1bfbde699000608 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJXY060AAoJEHO96YOBtGUhPn4QAIgvTjmEsRU+z8zroQNQd7Ys -vroJxf+CNsDgwFrhKX3lzsLxoVj4sJLuK8fAs31nk0gIBt6pxrTqrml34oGSnzL3 -0OTZ2i4SpzEEWJwKBpVUAVb5CLAH6Ofim9uGDsQ1pa8L+ZymuLkc7MBhRhEpilBp -vwtXpmKS9BYWL02KFB+3aQDDgOaf8diKc0IhcAEvf6quxs5DF/m0S8+fRkPMYi9h -rOVW97o76Lfgo2Q6v74458C4boEpqfvVoUPnU9UWIxBkdde/2KVIfmjt4yv1RcDO -W2TbYL3gEpLw1idz5F0Gd7bOc81rytOmLdBcW+kSa3wPPnow/aFX/USs5Op4zcIm -qxCMG3zHWUJMbFbN4xx540fVmWEbIQgQDIpSIidaL5UwyosXrj5tdRxMm5ARKUUr -0H94uV4/a9ShiMoAehE/uIgdeSvMi1Zg6f7MO2B15DR8ww4TazH1YBg3SeC9Fc8z -OEiVpzhjpRUPvCAmvibAtVFJHOOWzWfWK39ZVFOqEqaAPJC8MPFMmYr3rvak56NA -1h828/3A8aKgpipFl4cqCKyqaRixN2oL1lEIv3t6/kPjCCED0Xc35j+Fb9wd7ZJu -ecF7vNoAkGdSIIAaMaj0xbAwrOJsta6NDPBeeLc2niTppv1nG3/PLRof7j0cxj/R -TixIR/plbCOLeRUhW0Xj -=+1lu ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-23-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-23-i386-CHECKSUM deleted file mode 100644 index b341de5..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-23-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# The image checksum(s) are generated with sha256sum. -SHA256 (Fedora-Server-DVD-i386-23.iso) = aa2125b6351480ce82ace619925d897d0588195a3287ef74fb203b6eb34cbccf -SHA256 (Fedora-Server-netinst-i386-23.iso) = 2885999a0e26af2e8889e7648056b659922b36a1dc65374f9e065b4770ec2523 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9OFAAoJEDJHTPg07Jy6+voP/A2ZDYnCch67G2Rl7zafgAfe -p2wmwzuRezQAjTw5RYfP2btzq6VoHGmdRhKYgQ2zYSQnXhu8xPfTCdANjR0MbDst -s0bbVJufQ12QNe2wDu1zHaX+vKWaHMYkSRR8cker70RgpHfBgtfF+tRKhfFrKKq9 -7MNjaWXY8sfp/Wwh4HdtCppDykEcVsQy4J3qBuDOhuuuRTTUExJ3nucXd3nlMtWQ -8ldYysDLPJ0X0q3abeYW8HDCLw9XW4B8FWr5eJGNq9EFDyNYbG9sMbpzcsqfQVSF -VNATwD3SPwHBMaLnl7IDCsMmYFSCEKf2Fz6sBCqFPRa31C+UxmTDDTCG9CYAHwsx -lhF2ckqlTL8skEyFewmjou7UXNpXPA+o08dNxmXC3uk67rP9+jmd5/8/B+YLLNpK -zVnwzYmV6p7Y6+C1A+UTC/O/kMfWbzcai6O01WD/h1nhmFwpBejxQgT71BBa6TPo -/8FxeVX8BfDTKdmuNoCp8skYOybJLiZ8bHzxVQCN0C00vYh/vtJyKqiC9SvMDncn -7Loxui0YV2b0bDjo8+pIG0St01/CSvgm8exP4Ve7Qw+TK5TnXSOuvTY4gDABbu47 -5bPnPwbu5fuBSBjNJBhxCLzAQ/ctgstKx+E6IMeM9Qq7UwYEUL+cwSYC6dW6g91F -9W71UZtRClOZVExPfr2N -=Kpdw ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-23-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-23-x86_64-CHECKSUM deleted file mode 100644 index b76beae..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-23-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# The image checksum(s) are generated with sha256sum. -SHA256 (Fedora-Server-DVD-x86_64-23.iso) = 30758dc821d1530de427c9e35212bd79b058bd4282e64b7b34ae1a40c87c05ae -SHA256 (Fedora-Server-netinst-x86_64-23.iso) = 32e0a15a1c71d0e2fd36a0af5b67a3b3af82976d2dfca0aefcb90d42f2ae6844 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9OJAAoJEDJHTPg07Jy6u1kP/1/WgPwEkyjoqQ5SdShiU7nQ -YO1wzwwEBOhKFqvSdUbAAh9Qlgs0QRwNizYmBJBGnTgRkDkDnWQxPqXapYQQynk9 -ESkkS5gLM7oee3cvxsGcp2kCQVvS8JzpTp5kL8ikqsGauRmtXi+PyUzRGoyo2kKY -8rfZRr6pq0zHhsFDtWDhy4x0pLYrRkd2iCQucP7eEhRQ/Sg7Hn/1D2QJ68gEFIU5 -FYco7jLiKfI5U2+qDJ6iqeTTTwGKCN6YpC+bZXLHBvhGo0mikKCXzwGI7Wc0hRg3 -T5x90/4kIlFhaKgl/L7cXyd8n594tAOhIzL9EdS37yQLKt27i68/4FIGcxSkrxA/ -jNqDT6ALsymyZcLfDVMpYpl4b1u/bxMXky9JTdxk4bihriFgVrEEA2WOJhDubYlK -BccaIo2RYNu/V6wUNBLvNNRMRHU+jICsOQGqX387Y61IY0fZDuf6jtGT8JxLI/Hu -T5sGW1ofQ5owPkHJ+l4Ibgtw6EvtjDUsjtuiPUybvb40s7vv7zwgMVnvWjmDLDzG -Z2vLlgkOSrM2fn6wUBdZxy2rgCgnhFOXdWo9pPFLEDc0pjcFtJfF81dB4DBGXxSz -FlYr/E73cJ63LV6+5l1BO18aqjF/FbZm7cl2oyYqaOJxPd8K+RdbVK1Map0aFdxy -NloboMWzHiM8kBZalNXO -=JEIL ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-24-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-24-i386-CHECKSUM deleted file mode 100644 index 57224b9..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-24-i386-CHECKSUM +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Server-netinst-i386-24-1.2.iso) = f85f36d30a53988aacd7043461bc74a8f74ff35bcf6faedab8d3f7d12cab0227 -SHA256 (Fedora-Server-dvd-i386-24-1.2.iso) = 93c0bfe6e6bf23ca22cc1a85636ed15834336ee40a57bfe374f0044ad2d864b0 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJXY07GAAoJEHO96YOBtGUhRh4QAL4lwQpY3wYuN94pIRcwVLAi -FN1iUMlEGmMPEyTIDhNE8OoM4PQff8D7WZTFB8VrDBTv3nwqIt6zJHjKkMhNFdGE -JaEXQNDd+UP46WOAhQwR6c6Hh3ulIqk2o3wFlngnkQx/AsheCIEJm5MzB7O3BKZa -hP20GHeFupuZcPcMj2FUXqa49nJm4cd6dfxDAx23DBdesFfVTLLYXfTjhbPep35c -LVAVxeIPzf2Aq0oVrDuqS5NarmB2V5uEgYaSFw0I+nugG2ew5frE3mjZI7btIZev -p97nwWonIghPG+ptdB8W1QL9ShgTwETXW67K4dxmJGHmglY0WPlpw7o2Smvmkssm -Fvo9b3Jneo9LcLrDuhp6AMkMeKMyKEF2OPw6pX3NYPStCe3kmvIiqgVU1shc6SIe -tokmqyEyqcFFeD0CM2uClgUEUjDNIBmxGfmzKu/+U9T2rT2on3seFKqIDk1kPMAu -o/YxR5U1PSm+MkJVPcs4SyDfNIlP1XzJ1r5QaX/5NF6ms2gEBugX8LNIIxOMrg9X -gVONmA3P99P/m8w8UI/NwTF/voKA7mZd2JtSHuBCgn6LqULQk8a16dKVev3boYQO -g4eBtHXKdh/O0ZX0PIonu1eApfe2tUvJX4cusG1HI/zKSDIc5nA2Ubi8Z3pdau9g -mfFl/7TIGafNO/8abrgW -=db5b ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-24-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-24-x86_64-CHECKSUM deleted file mode 100644 index f72950e..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-24-x86_64-CHECKSUM +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Server-dvd-x86_64-24-1.2.iso) = 1c0971d4c1a37bb06ec603ed3ded0af79e22069499443bb2d47e501c9ef42ae8 -SHA256 (Fedora-Server-netinst-x86_64-24-1.2.iso) = 071c30520775b3e93bb4c34edab4eab3badc26fbb8473ad3a9458614ba85a4e5 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJXY07IAAoJEHO96YOBtGUhX7IP/j05rxuUIS2pCcDqB9al/43E -/X/SUJ5Yaa9W6JjcaRiK/jsFhWnsumrzylp4jMGQ/x7QIKRRPAzFmT6K+ltkOv0f -0CosJw2p6Yt7sRBJ9HuWGdLdaRoOdXeT0odhRGEUH8FrD02mHtpqlFNuVUGXzg5u -UOtcseUsijbVtlpsE9WPj7c29I5pJRrj0/RE57b7alptAd+Lse3i+K8rKo5Xirzg -heIgu+emeLsRWulzR1yCIwTgu/0YqcOUo2Rb8mHW201pW20ohjwKM5NmBRgU+XCF -H9jhK9UmVA/czYSD2/NdNpgnICtgugJNPhPuhMv2CQHKqLoQxvUAviJYyibMOGun -sevxCr3Vs/RuGh2s2fjximcE13NFhI79iazlzV02vEbKOmqAKamzytQmJ3wFpZrz -v54kIul5zxb+HshDXW2Bij1FrCGh0YTSdXI+B628l7ERepcOvu52pb4JkaN2elyF -jmDtzbbhyCbCISpk1mkWJnEVQ4TgKAIUrWY593fVU5QLBqJWazEjveRTPhdcxnas -kRzYfHdVQtLbWKB1n3Sy4NjACq24eMmlyxvLiwPqrN5EENlcNCPlxTS0eLLcHF4m -y2ldPZCAM0hwQWaBtx9r53tocYxst+pvmfApOt4I2uMqZ4MKXXuhrG3WOw1lkPlU -T5jb8Ez+6j2DxS8GUfDY -=7zN5 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-25-1.3-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-25-1.3-x86_64-CHECKSUM deleted file mode 100644 index 8305b2f..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-25-1.3-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Server-dvd-x86_64-25-1.3.iso) = 524bd959dae09ad6fc8e0476ea478700d89f82ec5795d0b1a7b873613f3f26ac -SHA256 (Fedora-Server-netinst-x86_64-25-1.3.iso) = 86bc3694f4938382753d1e9536f2140a6c9c1978207766340c679a89509073c7 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJYLwz6AAoJEECJ2PL9sZyYmIgQAIPNT3agfexw7E0cja4J6NvQ -LQ5acctww2GUPwYNUJasBJJlIAs1SCmIkbur/7dzrXSjGoO5YOukBLyM1zA2NOcz -bUshko1EWf9yeTcy0I6oJ/KnRndX4HJsIyFLxjX9pbFqlbxqMOEa9nxVGW32T4vh -kTrZumXKz2qmIHMuy9SZlmmoDRXKBAt/IweoiwkLL7GH5fFohRIQmvqB0a85PVr7 -1Gy4/mnG1LdPvqrU400ptWKOO0/bXcomGkv3x9RU3Zf629brOEYG8dzoWaZqL54a -GgDAonyO/WG3M+2XBiGrQ7pM4VWrz6GX4NZ42Osvr18srYgnQBPD+PgOQBApvpyh -XFyllS6Axygky6zI/oqCydJANGp8bn7L71MV5EMg4NIhcR5PVhHM92xSbGJYN1+g -sKORVkKaem2JtKedbLKUvDpJy0btmd/8uZzjTVdOnc6jaI5vrlROCT7I91rda0aZ -AfiI5ru8wsM+gVNTQwOudRGBdaes/Ir5kNPK7Tx5CMH/mlbqCDijy+L5Gh7pTy1M -ecUfZ6/zATyc/9Wz01ui/driPfopsxJBKi/nfwQimSFL0AyzZ/eqDvqHqBEXFgSG -M0uQMPJ8qks9HqbCBrTdvygyvjqxGiB+/nYJGeeKNmG76hBc0dykZkBz1kkD03Uq -NCGy1oZIl6mX2Y1EUkvN -=A94J ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-26-1.5-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-26-1.5-x86_64-CHECKSUM deleted file mode 100644 index 24ae834..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-26-1.5-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-x86_64-26-1.5.iso: 2401239040 bytes -# Fedora-Server-netinst-x86_64-26-1.5.iso: 507510784 bytes -SHA256 (Fedora-Server-dvd-x86_64-26-1.5.iso) = fad18a43b9cec152fc8a1fd368950eaf59be66b1a15438149a0c3a509c56cf2f -SHA256 (Fedora-Server-netinst-x86_64-26-1.5.iso) = e260921ef5c7bd5ee2a7b2f2f1156af6483014c73984e4cf37f2b6690e0155e5 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJZX6UQAAoJEIEqa0tk2rhdgVYQAIpSCLoOD5QRMUvtedzaW89n -Fgwna0+zrpw/OA9i9mDg9fkZbBuX6xywgtS88dDaUK/L5o7Tou2RxfiaJPub04AZ -drAIIuLC4jAdJVc6LXBpL1UrdHVfCJLv4q9k/fvfAL3m0fJNpZXiie/ImMrBp0kx -SuGEeTrjeOE7KjW3ziKnTviXhDyEcE7pqKymRne5mHvET1Pn7KSfB+86SgvT09B5 -j9446T7V6eT9thpiZjeOKx7qWoKEKF3vyGZhjfe1Gt9uif67ElfOnxJApIm0DSvM -kU6SRaHSb+03wQ5bbUhn+LloQ1aAlHqQGDlqYhWRoePoK8z+lLm2sswClNAB8uDp -f+ANYghL+s4GCqeVlYhDAereuqnWM+ixua9Oc1+STpkAgWYROCL5xVYNrlkU5hMY -sJLnR/BIvGHCHPgP+QG5+5qGZGOtFKqgiZi/r+JGz7Jkcc45HuutDPtpo+I+RUlA -M/qbHH4bL+Nq12kCr5kFOVI5bR2HKisRwon8La8p89PlcgWxCr/RUo7eDmiuMHtX -ViALs/erop1s+FJzl/sSFh3PxwWbv3e67UJvMaD3LrE7HZYRD2K85G7fd2R2A+xI -0Zk/QDTkhGdJ//5bbIKJt8I5Y5djsRZ5++u516pvIq0/g24bcROzS187Tiqltg7i -hSUQO4eHF67rRbdMEpWY -=skLW ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-27-1.6-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-27-1.6-x86_64-CHECKSUM deleted file mode 100644 index a9c9b71..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-27-1.6-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-x86_64-27-1.6.iso: 2490368000 bytes -SHA256 (Fedora-Server-dvd-x86_64-27-1.6.iso) = e383dd414bb57231b20cbed11c4953cac71785f7d4f5990b0df5ad534a0ba95c -# Fedora-Server-netinst-x86_64-27-1.6.iso: 535822336 bytes -SHA256 (Fedora-Server-netinst-x86_64-27-1.6.iso) = 2b93836c38833b26891345388ff5ddea60529b27a616b4539d432a3520d1c90b ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJaBfQ+AAoJEPVedDD1KC7kN7wP/2KIs8hgZO2RdPpL7h16jnrx -WGePBLA1qxRDNXs+8m0AY1w6w2DwXbk72aWLbSeVDW9/hc+6qA5AleKgfSfjjsbm -HjUA3deoqIsSed3nVggx8akrCFGNUwi6M/bq8gcXTdFTUkRCy797MRfbq3LtPo8y -PO3mZ/cjH/D+hgseVPosTrYEeo4woIhS2EYfYA5q06lkiKX8BzcFhf+4o41yVg2o -yFLA//HSwBphohJZUSYaj5eeqVJsVd0lEih06MNVTEqkZJdwCkDLRwRF6XZPIyEF -JCkt+BL4/S8ikaJukJwTECmYo7P3NiEEEkLG2rnYeit/Xg9hVlkDsEUIhR8Ctu5n -0/kuTKjSevDLtBT+i/TUOfa71nBQEtMyXoGfIkFFgYLlg+RddDujxRordBLnNUMm -LWbZaxf3NHMiEu5QDA17stkoYLC/HOvPVWY/DtdfQv4sZXb6UoijXlTujiG5L3vq -sL3VZWPvY/Et/KHNdpM89wnucLHD1pILtViXfR7sB/2SgrycRgZOIYbLC7jK3KGC -95xnFPtbSvyipR3nO68I+yz+y01CvXu7IDtlVyBmXKI5py1FvcX/CaKt8lQpuLKE -zhZURmb26tIP0o3Ipsk7n0OXWPJe8V5BnOXyODfR1SOrKLSHftLQxOOqt0wccll5 -uo/XcE1t7EItJ0ixNc8X -=LoA+ ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-28-1.1-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-28-1.1-aarch64-CHECKSUM deleted file mode 100644 index ac1f306..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-28-1.1-aarch64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-aarch64-28-1.1.iso: 2740688896 bytes -SHA256 (Fedora-Server-dvd-aarch64-28-1.1.iso) = 9e9464031194fc64f7d7c8ce54aa0c6e110f772008bba386fb87a7d217bd4fe9 -# Fedora-Server-netinst-aarch64-28-1.1.iso: 548915200 bytes -SHA256 (Fedora-Server-netinst-aarch64-28-1.1.iso) = 7a772720a731250622f89d1480b839261efe5934850ae1325d0137290f23c33e ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xqKAAoJEOCOfmKdti+xIDoQAIkoqY5mXHuQif7WV5krUtbf -sVZ3VOtOqJPFQ4I49vIyTTH78O44GJXgVWU7YnDeTXg0cMX7wNxp0mvGIWQE1/gS -bDGXWxRgdjpaTym3B9x53Y4cSRT/F2F1qHWMyIvAcvg/2T28xG8XPcDRQro3KrqO -/IJV6gLUyT/wx5FnVpckDtH/uuLTbEbmQ0qaOLrqF2nCnWGNeKdQHd+KqXOJucAx -+rYSHYekdqGIjT7W0tujhhr6xl1qqb9Q/+13tTT3UbVWR9wZACNhv2jdH7nTx6Yg -8qh2kh+VNxOtr77ZiqqhR25/x/cQl8mLII1oc7Oop9zKhMfa0wgFWVpt8tCv7d+E -7cdBh82pE4zGg4je39eYtvMRK54UoDdWwcfahZ8wTe/VBk1yB3lmlIaNLN/uVvHd -D/q2trtNZq/QNcT1ogBZOgxGjtBJm0cQbBVUJFzlvcDDyNtPyNR/ye0EBU4HKQzZ -w7Be7ot9Y//GnLaaE+4slTteHyO0aeVQGFD5rUgex4qXzdlUuCEJdUh0+jmDwQz0 -xtQAkC5gfvdMgUallUJ8Q2sxM8qQu+OLR6cktWjxZJsVJ2tBoL63uEShqb7/Kofc -5uFy0qkE1TANYjZWhdpwETY5WnzPhZXV19Y2GYvVeLY9KaUAOkijFte8ssmoFyQf -NLEUej4hfoXkRs2WDfxQ -=Plh1 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-28-1.1-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-28-1.1-x86_64-CHECKSUM deleted file mode 100644 index 85910c4..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-28-1.1-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-x86_64-28-1.1.iso: 2903506944 bytes -SHA256 (Fedora-Server-dvd-x86_64-28-1.1.iso) = 8d59a25052e05758c15fe9daa3bc472b5619791b442e752450bba7f1eeca9c1a -# Fedora-Server-netinst-x86_64-28-1.1.iso: 611319808 bytes -SHA256 (Fedora-Server-netinst-x86_64-28-1.1.iso) = ea1efdc692356b3346326f82e2f468903e8da59324fdee8b10eac4fea83f23fe ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xqcAAoJEOCOfmKdti+xUvcP/i82B8ylf2d5bJhCxxUAv/eM -H9/WwN3HSk21D5vXxAULN5g15h/fPCw4kss5ltNA2IH98Yi0EugJ1DE0kbtI7eAy -szKDu5bhZH4/t4Pr3iNmqYGKx6+XCfoCswjh4iJ3N/hIaQ3F13lOGQ78aKz/A/Ug -TWamyd0e5LerzKaQo0Wy28pcBYp+1iWn1anfdh1jtgNoiYksmEBIwgsI+cUtgtKV -lBmBX0uH5CMnDKe8IEVpcfVb46Tj8a+qwLQ+yU8rRpE1wly3RLMrjRbZU/our7QI -5KBYT0Ahh8m/uKws4EjlnfWu5to5/yhx3oDTlMtWPbxX45VtaH/m7Khd/yZMKOvD -FOJ5XSYqF3Y03647jnrPaQ9nVcs8fhRGJGf5CdkI5U+04l+45cxrSKlm796IjKF6 -eXhQR6e9afi7JesfBBf2gyZKsWKDsAnd9kNBSnq4031/xaDLt6llimcJxyxjEkWj -Iwnw0vwvl06iHy/YkH48sxfA0fXh9fyJh0eqFl5FEglO+544y6rnVT0c9Ny1CEJV -VWlxt2Oz+pmYXZPnAgDIbXwxwMugsirJtaNIMgRQz2+aK9SnBkab3E8gOkErfr1T -aweJ1oVQJ3a4+w7Xr/RibuAcmS021gfe9vPOYqKLdgj7ugw2gj/lz+/tuaySwXs4 -Bu4p+vQiLg2ucpmIvd8e -=zkWd ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-29-1.2-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-29-1.2-aarch64-CHECKSUM deleted file mode 100644 index f76231d..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-29-1.2-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-29-1.2.aarch64.raw.xz: 545412040 bytes -SHA256 (Fedora-Server-29-1.2.aarch64.raw.xz) = 91e5a07e88fea9302295ff738186dcad83b39a96d2a0a01cb87b18859ddbebc2 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ysoAAoJEKIKpWtClHa088AP/3TFwQTRdi9dtlaAjpVW1xij -YUEBRRJHc548fKw5DZKjGIN4KcyUVhYVNASkTbSnGVqNHMDnpfrA01JuMPAzwPp7 -COvYCrSqIzq7WsYR5HRo0YH+W1viSYsCcfugGdbmGrX8EZoEvMR/hYv4rdavrhuK -KuEF5wFUpyZheCkBh4NiQ9IflHPPwoagQ8l8M5JpwT81O4864WmMkKK9q90mxV/t -D7UyZqRX1rrazOmTBwnlNXf7Hq0zGjGQj21/mtT8benZfDrCoKGEzPBqcK7lUKNd -V1OI8yDLl0K965IF4BWZzekASZsEJ0o/aH4pANMpE6hFB0/qe3o9Gbh1UKWqNiyx -wZOKTgXMJvEJgxuvzW0gwdx610Nt7HFQ+RCzawIqczudd7DmcuT/jZXcnEJQNSzQ -aqFSPlJGPlWOqlZEeI04mCbAOjbDFz1JAe6WUW0d9LaPB5S+JZ2efTbw74pg/vYJ -mqZGmwKvayku3g1VdTL6oYP8rXNNzxz82AHHVrEjL/ACldcMcwVh/YWPZzPJpUPK -GTawr/xE1Pr3dhl4SkqL+wCMI3vYsnA9aX5A9zoPAoP/pHBkgNz9RU1OvVai3SlE -BsfruryIQFH1+m2sf9LKLoBPg+oTqML7E75uXT8wyK8hykvjEoiHppXpDKHErQU4 -iqd6x5XT1Lhta6+nIyhb -=utUK ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-29-1.2-armhfp-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-29-1.2-armhfp-CHECKSUM deleted file mode 100644 index b8607c7..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-29-1.2-armhfp-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-armhfp-29-1.2-sda.raw.xz: 520246196 bytes -SHA256 (Fedora-Server-armhfp-29-1.2-sda.raw.xz) = 50eabfdcda88097d314d5135acb94ce0545097a289605cc4339abb46ecd7b112 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0yswAAoJEKIKpWtClHa05pIP/18cISJ0Y0OsQOrn6NKoZpp7 -bX41EW6GGRXckdHCwFy3VTjbq2vWrzjKxdPikq6Ls/rzKJ9+y5gjGl07P2LiSOB9 -kPLPyfExzas88bc/GO4IA87KP6cCtbhIrgzhv0XVIdAVpI2bIf0jDcOuhhnPkgkN -gIIDO95RlTUmB1C/v3XyZW3tZHgXOyOtAtPwP6w6Av7BTT2jnndvNL3UEc/m8/aC -jU/y1VqvQMeJo8WPNuU69emyECHaYlx2Vzof4U/mwouo94PH6c/+YCnEOcQPGOk+ -dunUyprog4UkBbuBGbqAy6sAhJQCpUkGIMxWU7GU2+rIBAEGCweK9d4ozZmLsqf9 -epmuxVC0ZomLRYm0ddyMD3YXsHCqbYcDvoTIiTGcQiQdLJb2p3GTT317i0YWCqrm -sodao86HqXOQefQScgmEy8Bpv9UaLqrbMLy5Hdiv1TzSxI6+HrxLpl3h7fTPTJcL -olk6k23oTVrdOMhznaJHYnghRdnD7fk8VUKMjerXutIVod9Tmn09Dm3xTPHBXo7J -M0+v48glJdkjbnQWQ7AgcZsXwz6qZpQNOMfkaM/0B8B+NIqhS/vRQqR1Wwc/xPRg -u1HZ6iAEKT+jMawZXwnti19/wbNm8t1YJ/uKDn0UvUpCivTAw95ts40hz8bafKun -35lGB+yOQMb8epV7/T6D -=/7r+ ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-29-1.2-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-29-1.2-x86_64-CHECKSUM deleted file mode 100644 index 0053b97..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-29-1.2-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-x86_64-29-1.2.iso: 3122659328 bytes -SHA256 (Fedora-Server-dvd-x86_64-29-1.2.iso) = 129d131a55e5bd518f593f0eacdce095f7c795fe7ccbef1f3f6aeb2ff9f99f35 -# Fedora-Server-netinst-x86_64-29-1.2.iso: 621805568 bytes -SHA256 (Fedora-Server-netinst-x86_64-29-1.2.iso) = aa7fb0e6e5b71774ebdaab0dae76bdd9246a5bc7aedc28b7f1103aaaf9750654 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ys5AAoJEKIKpWtClHa0lX0P/0MquCMGRDom3VJJwyCbpoij -wNjGEcqWUBJonjHKAohgAuD377JEWkiZlzQGGm7WQ/OYbxhcpndsQUmOuT0dazs/ -hTeDxJvYk79MQOYsGkM1hemOIO7GykCQy3lo7OqFQ7g3jRXnPSn0hO9Cjti9xtvS -a71tSy17YyOetVDbt5H5fVWmbTvA+K3OpjG/fYHohrWaTG7cTakakDJ5xGUz1Chm -uPRxm/zUjOphA1fpSvuF78bFe/aN70eeK5y4zpXrMxp0q+5Pg3hMj6hG1tL1skBN -y37+8Ohh09jg4s3ViAmHleDgkAebSLyuRomr/JLZbv/7qQu8RGx60+Nkg+W5OGCW -NbX3rgnNJb4eD9eI9Oa4dV3TRICYxAssy5Wp86f70ZU+95JuMImCO/2OBJx/+Pnx -DwQ6h+obh3PCVGTJ7D/WgH5hYgehhmZp7K5AbkgiwZQD7IjdgxLrK0l5DB+KwVt9 -AJfTf8KCx1lRkKDGEmr7t3ToNpU/ovBaKULhGjtSmJO715mxrXE0pfj82QSkqzuS -E2rQXpsChOfVVRHelXz9sT3Q1ZmHVLdrTQvhk+dYZnF7HVbSMlpq2BESycuvr3MM -ODwKxpcc/Gb0LEttpDImcqOSgyXu3K+u7rqDDIHnsboFGycuUNyc2fMTN+uhmbeY -HH3whwokPAFuTqUePxMm -=XjUR ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-30-1.2-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-30-1.2-aarch64-CHECKSUM deleted file mode 100644 index 8be42ac..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-30-1.2-aarch64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-aarch64-30-1.2.iso: 2979639296 bytes -SHA256 (Fedora-Server-dvd-aarch64-30-1.2.iso) = 2b5c38e2b0df522fb64b316ed680c169b8ac45739e5958710d90878eb3936d1c -# Fedora-Server-netinst-aarch64-30-1.2.iso: 576405504 bytes -SHA256 (Fedora-Server-netinst-aarch64-30-1.2.iso) = f8561c31be9db0a1af593177ba2751319247348bfaa070e3d795f75a8b8d8e61 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw13vAAoJEO88ER/Pxlm5zBMP/j78+lvLVJwU7KolcAUqHODZ -HlV9sqg9rmR43ZfSMgT3bDwjiEOGwFqN0/XtFYT+wXACPHzdGwlj6L5IKOZub9+T -xwPKv0lSPd8RQuDmZw5cIoT73yDToI3md2pOgqq3d4KdvOuk71AKY95ISVsZ3XjW -+YVhLRWXpF8p6h58fVkJokTvHihZnVvV7PR718YUwKIegVIhLM1D3GBSVouT+17J -DznSl7LQynYQWJBzgCgNhhL+n1sGw9k+clLFhAVWHBN0XbgKIT1gyPAq8ccHEPcT -VzPGAnsghhPrpcMEiEz+uRn/YZ0Z+LtPxIQKgqyjATkSLnVVNxM0Ilo1RjDar97B -d1aq9S4eWVzS6+MixOdU0o1Gg02+trqaV8/M9QgRLMyl9s5YyScp2yYP1dsxe0gw -SR4k7/wghMxgZhjBbuN1CqnhGP47eU/KvqxLYdtmSftsqAh4qsmB0zLU2WWP5JS/ -/RK5ugfPaBK0fcqfHCZZSncGbojQIK09qbs/zA+O8m4COL8qhJ9bmZaTirFtZlyP -PHaUsKxH7VMnvikDHfpBLo/g290EBP2dWAO9MX7WrvfoXuQ7Do5FQMAWbwFlrJvP -fiGUrnWGwGnQSzJexurV0BrsVnt5Y4hijraphvb2iwXQ1APpArUyrYHbj5oyLyBh -1Ewj07+LVa/aUPPnS7ti -=zSuK ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-30-1.2-armhfp-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-30-1.2-armhfp-CHECKSUM deleted file mode 100644 index 362fab5..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-30-1.2-armhfp-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-armhfp-30-1.2.iso: 2934106112 bytes -SHA256 (Fedora-Server-dvd-armhfp-30-1.2.iso) = f2c1918e730a8870c1e5a946f94d1d13acf889f3b32667f6586cb76c706a878f -# Fedora-Server-netinst-armhfp-30-1.2.iso: 640413696 bytes -SHA256 (Fedora-Server-netinst-armhfp-30-1.2.iso) = f5a2d9f8816dee7c55f857c5c0b31213fc06ad2d6601e631116df151559b9a91 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw13zAAoJEO88ER/Pxlm5CnUP/1s4K4nGl/aJ+WRhuA7HaBnE -XMyWXU9GRx05RiVIwnRjjtSZeR/3QiolY62InaCJlkyQHeIndoPyiDS1WjyyQMS0 -pM8GWJoTqvmZSkojgq2GylmjPckLOS28hEyhE9oiqO25yijIyOAla6VuPbt419fE -HQ1auchUDtv0w90UlBmizrp/hCfMRyDFcu9qq5lvPHsp8mVEHSdfvuOGuy11Q9lR -/OoIWyjlWrsTIwHhMLUrN5lwJIB4nPUaLx1T89wS7rf5GRCcvblA3yfvaqwE9KNg -1cuKJx/Oz0iVa+Z1PannC1whn86NIsx+ETVhLf+LOgPhiJdzP25Wb28JTUtnsMoT -sIs6+0X3uwRt4jLJR1VUeyukXHDTBvGFKJvCxwROY/hJprsfVwSZPLGbuxifutI3 -shtPa0ZQNN+AuIhUSCHjJnuFXCVWW+8LUp+Cz3zlfAx9x87QYNmKYk1J168QvN7V -1akarEcno0cEnCP7ydfhDZxjSeXWH5YiJneCDB/+gSVWtySxNO6L0LAEIUTc/E3v -B0jPgT9RnjKnIJX/8yvlpPtEyrlr0IXc7UK7sjFwNeCY5ANMlneqxaMPSEU+I58x -YorYVXs6z0sO1/9oG9VfIWHHZs3EOlBmND6MVU2hz5KXIs2TYDwhhCvHmcIKsF0W -zeWpsMGbDl8Yut4rNnY6 -=Ov2g ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-30-1.2-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-30-1.2-i386-CHECKSUM deleted file mode 100644 index c09be53..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-30-1.2-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-i386-30-1.2.iso: 2921332736 bytes -SHA256 (Fedora-Server-dvd-i386-30-1.2.iso) = a653c7f2ec02c6cd7b5ea2fa551e894730887be007a36d2a6c8ec07f1f8609b1 -# Fedora-Server-netinst-i386-30-1.2.iso: 579862528 bytes -SHA256 (Fedora-Server-netinst-i386-30-1.2.iso) = 60fc712da8004c59d701dde2bd5fa5c4922d0a012ae83799fc8741c9d269929d ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw133AAoJEO88ER/Pxlm52FcP/0cA1sDumkfbYQ2w9NjptlEx -EyHD+w4MtD4it7Rv7SN1ItQRAhWfj02BdHd0v09v9CsdsYATV3g9VYZLHiyU7ZcH -r1Sqo7xOeIMqqdckQAtiQXMkmEyR3j4vsn0Zc3/LRyLNz2o5RhDiVGwUt9Gr+Vqs -jFaDEHHbfvXICurJiiOt7Mi56frgxertVgZW1BG1Pzo/hwQMkHta7hTX8J14ZAtr -vnJaIe8ncSKia1fqpURvK3/O4kIfsM2lJ8OGV5WH0azkUMcY2Nnc7aj9jWBIFZVh -UPvVpFk+YI3UzZv/03HYlDXRBFpBhKAAYBGErKSGndJGjUA3eBQHpvxkjC8xPx+/ -vhQQIEIctd8tu+DaVYhCgj0at9iCWoX/ZmgRAllVqpKVnn/SMkyOMpghRQ/CEA0V -z1z23l0+N6vwVd6hRWApbM2thQHULX4HxsUGUWZE3Ctk4QZxJysmPEdEahfsldGn -TiT8phNRMAmnlSkfXh+H1vXk/gX8HxF/NZtH7ltHHR4ZywVo/QYipXpmu08T8/uz -zkFr9bOK+9Hbbua6vHr7Ui/aAKAYqiQo8C7GLZJgDuWmmv9U/YvlQCuVzstEOBql -YQ47oIovcDLogNsyAQ97+3Rvg44G+UZmClS3SD0ffBZoXCL4W5Jr3G7wpZcJ0j9i -ZJihT0LSr/icYrYSbziA -=woE2 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-30-1.2-ppc64le-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-30-1.2-ppc64le-CHECKSUM deleted file mode 100644 index 86e22df..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-30-1.2-ppc64le-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-ppc64le-30-1.2.iso: 3142180864 bytes -SHA256 (Fedora-Server-dvd-ppc64le-30-1.2.iso) = dd892ebd8fead201e20da0214da50b6f0e1bae08521d27b987f1fde1ea6f136f -# Fedora-Server-netinst-ppc64le-30-1.2.iso: 603062272 bytes -SHA256 (Fedora-Server-netinst-ppc64le-30-1.2.iso) = 925d7313ca132b50aef104057dac4ae57fa0349c609ce15ef129725c472a050e ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw135AAoJEO88ER/Pxlm5UNUP/RHNzDCCiyy3ixVxX7KyUIBj -9/5co94Y8kwOJEMP/07ta0yKEeJoaNGNYx1h5fNk+S9uibZ5L0nuaLXVS1ITN7cq -HrVvjvuYcV1jFe/qxT2z5npFYEMQsotkVOzLYSfszkURRLOQqwAltKyujZlXfWqn -WFrTMJxJN5OTX0lhJP8FxC05mlnw2ODJdpobiycoagnbMbHyjrNySyfJonWrBa43 -tCSwe5vPmjzMlnyrBvQjeBl3GNpRi5t+lmo8HKFvTXrTTeImErZh7D2EGFNUh8Q7 -zeQ9Gc67IwqPMXlc9Lf48lLLfUmwTydbYeeRSnkfsxTOBK3yJh+TqLnVE1PxB3z8 -uK1w1RUX74cojtQ6jnIt8cZP4nQHIaGzSWfcLqqTMpt+HJ5ZMX7muhf0qMg7nOBK -r7YugtyhZE2PlrYNYyV57Gu7Avyy8KurcLCuRMpOz1fYx5zC6rQMSqNGokHbsqEH -czNo4WV5oFhr1fpm75fa0Peg9Jhin8ADX5O0U32ibg3I9ORaTFFxJ0cvfRyL08xu -Ob05GRPtRVXmZ1LuRvpfXXh0fo5pqtTyr9uy7AX23XkmdC+BA3VzXjZjnMkCjAoN -7q6jYIMtmaM1EwjuDw+mq26tmPcThdQvJTU2w9GK5viSkQhil0rP1aNYjuWHyjQq -Jgub3sgFqRc0gx6p80JV -=+C5p ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-30-1.2-s390x-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-30-1.2-s390x-CHECKSUM deleted file mode 100644 index 159e733..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-30-1.2-s390x-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-s390x-30-1.2.iso: 2846623744 bytes -SHA256 (Fedora-Server-dvd-s390x-30-1.2.iso) = 6b585ec6608d96cd7a54133c3db04690079965c3e6181ada4ee6dfc788db0203 -# Fedora-Server-netinst-s390x-30-1.2.iso: 463640576 bytes -SHA256 (Fedora-Server-netinst-s390x-30-1.2.iso) = 0133a2104ff6f6a031a258cceaaaee76915f95ae9de61fcbec6d3a1213054b62 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw137AAoJEO88ER/Pxlm58/oQAIDbma2IEwdzbJZB8RP+n2cj -wjPYbrup6t+YRAA+0rd4Vw4xeh9TZOqXDwucuyflKiOmmR0kw0JDwJ7SQbUh/0C9 -JlcD3oyYDVb2MR6b6dERAiszgCnIEQ0qv/txHORzYXDQT9Ju8Ml+7KGZP1K+xIGh -DF8AQ0foO8fH4wIiE87MVZXf1iLk6FQgiwHpmRBcVzrHMvbBm+POIwkX5rhGpOoa -/ULFF4vRaajpOelTYNmwbtyZ0QCvdhoDVbezOm79V4522h/Cgnilib1vb2tgUPO/ -yHyhzfNXaQMwuJ2plC9a/FTntVYsXeMALtF3xI/Gz2gTKrMzz/umTNovQ1KJbRov -TxYSiqxzrwRK/+PBPPeuug+25hMBny1O2/skK7xbkdrnfLAazMFqkERlK6UgP08R -kvPhJo0NuZOh4M3HMjSl949wzQwJLhHN2l3CIAbEh3756i4RqtrvIAkaR8k05lLd -FXSwTx5ioSIsnkr+5yFmUFo1QuKkFBlXVZErCluLtm7JHMJ/UaKFi5HbCIRFEyeY -ch4WcNW2QMffP4F4YvzlOgFfewOyblPjnqWI1YCsVgg/5sbwv8fRJ7aBfmvlrgjn -kDq6v+cMgzbVRAmtTzkO6s6kggB3cjMp7gNcAoOsKjK9Rkqi4s+61XMbbTvMGSFT -CMCsdg2qp5ygj0wKp+P1 -=Dy6W ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-30-1.2-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-30-1.2-x86_64-CHECKSUM deleted file mode 100644 index 2d0bdb5..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-30-1.2-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-x86_64-30-1.2.iso: 3177185280 bytes -SHA256 (Fedora-Server-dvd-x86_64-30-1.2.iso) = bb0622b78449298e24a96b90b561b429edec71aae72b8f7a8c3da4d81e4df5b7 -# Fedora-Server-netinst-x86_64-30-1.2.iso: 625999872 bytes -SHA256 (Fedora-Server-netinst-x86_64-30-1.2.iso) = 5e4eac4566d8c572bfb3bcf54b7d6c82006ec3c6c882a2c9235c6d3494d7b100 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw139AAoJEO88ER/Pxlm557kP/2KCssWq9WF75XGSXuoALdpC -ptEoUNgHBwlv00YtUwRyyuPQ/VGE6Jst9dEN7m4CUJGDgeSm2X8hPkvGcJ+Ns3+C -9LJurJ603fetvDFm80mqIxY3yfGSpL6Oqh3ppXVo/UC62No9a3sfg1/Fhu0G6Uk0 -bgvRxTgjXFTS7pA5KEqB8d07jxJJF5Z6Xjkz/mHp5zoRLaBE7z2v0uYTXARf91x4 -shSFSjUapYL2DYpJCWY8u7ROchU9sqiZmZrzZ0OHNZ3TZhvs8LIySecBY5NZO9xt -5Y9WYvB1Ivw875I+DSARshJB+hLW6VIAwIZ+UMcdrv7xgS+lMkgG77H37yS/pZ+8 -bL+pZb6uFo8OzdFmPWVodw4P/3jA/NxiZJFF81/K/pLFg/TVP8i/vfWzWS50Bx9p -yzm3hGUliFocAhDcAipE0rPFko4Gm+TmwMzgE8hGDgFblmEfdlOcLH6zH36YXzQp -ATCeavjClaJU8292/64+YWROHVRaNXcLpYIW9pD8a0XRz/prGFdzNdDF52QC/CE2 -gmaFfo6ggn208ciXLQKvYlaKEZa6m3nmLi6neHBiOla05jL94UXdcpYjI9kuIGxj -60AQaPhVKzAE4Yjh7Zxf5RKxMCHMjw8oT730GXD2TRwnv0Dmx8Ioc6IYoLMF57t3 -zpjK0m3T8vNuHKr5deMp -=8sTO ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-31-1.9-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-31-1.9-aarch64-CHECKSUM deleted file mode 100644 index 824e876..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-31-1.9-aarch64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-aarch64-31-1.9.iso: 2024341504 bytes -SHA256 (Fedora-Server-dvd-aarch64-31-1.9.iso) = 348f9ff7a899d0b38947a8ff55808cdbd6e2c53d846ca5eb0e13693e3e6623a1 -# Fedora-Server-netinst-aarch64-31-1.9.iso: 626192384 bytes -SHA256 (Fedora-Server-netinst-aarch64-31-1.9.iso) = ebf2dfaa31b27106c809015003cfb70773afa794d611555faa4b56d6e53b1aa6 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvP7AAoJEFDLOQs8M1nESvoP/2jwoGN+62TJ8GYJcc4DadlT -NvxUu/WyOWmXo4qhKX89u45VzTkkn2WIz8s+wJsYKY6+IjFwCA8vCrmm0nKqWCU7 -53T+Xhhr3CZAOrLr4Es8fF8okq9iT1DoV9C+6FbUq1C6gPNHo411EOrkwONaM+Wa -J9ah6hA2U3SCGtLqrkgHKmjN9tzD9wZ6yGnlzDN/Pyq7WphZNZYj8tN2LQrtmMtc -qFLKDF2X56s4N0IOUjto70UQKRyP0P5auFF1ems12Q/6q3aQGl4EooVjlKUPToTw -puM04lbaEVrBGiEA1lktjBIBnVFgfKJChaYN7O10QeQgVgiMQRMf135cSDWEtQyD -kTOa4fkumL7R44FoKX/B4+TRhntGhDvt/keR8NAtcviAtHFw8rekSITOha8Onj/D -0JSI84kLJdRmAN51+StE68Gjm6JaIjKWrOy0T2uchqAN8KIxt4wOozVY+u5cQPSK -FcPMKmjbu29sEpgZ1E0pUQVg21JyQ49mqKoKVGG3cAkaF6URUCLOAOKTRx+BBXNT -af7wLkJlptbiNiXRqN2fNp3+3cHlu5z62+D8dIvCPEoKvOxgwA//27OQm2V6EIo6 -U6dvC1rp1bZcqqaO1so1hsPXjNK1M430PfEu0Kb8WlANAQM+2J1lXFtFDXCvNOcF -GWKKEUWDhwqTZ+4jTzwB -=FtSk ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-31-1.9-armhfp-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-31-1.9-armhfp-CHECKSUM deleted file mode 100644 index 8cff4e8..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-31-1.9-armhfp-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-armhfp-31-1.9.iso: 2000422912 bytes -SHA256 (Fedora-Server-dvd-armhfp-31-1.9.iso) = 7672d1bb06660a5f0f2e20df825ab3d8fd156472bb7fb86acc35718d1670754f -# Fedora-Server-netinst-armhfp-31-1.9.iso: 689074176 bytes -SHA256 (Fedora-Server-netinst-armhfp-31-1.9.iso) = 07718bd61453f0a52864ecb37065ed360dd5b324d0554c9974d4a96723496b0d ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQDAAoJEFDLOQs8M1nE7oQQAMbGy0V2JS/Wy6QszvYPOreR -Ew2jc4Wifvh6pivsakDwcpxGfkRXxg1deSTpsomi9ZGXzRUHJ/grFarPgMqAqhCC -aa26MQW1wnbo69sK4JVRi+FUJUwQ7OwS5/2+EVtVzA0ooJF0th1tos4NvJWN0FOL -MEJjcfF4+0YY7zrN0iVg9yjl6+4X/ztU9YSee+OXffncEiyeI/fCiHa64uo4LTPT -OBCGQw5RUymOr4E6dnB/tnrjb1n+ZQCCDQiiTPF4NuZlo3SUr99Lx7Qf3hyxj2bm -MT0y3T1lp6E703xGBg/2BsAPjOkBja584EC8mZ9N84SgQsqMD0WBBp0imtybTRiE -0Eh6gjYskbBeRtdQ8teCtb01+r28QSln6adV9mOQTkeYXvqVxos9fsWPvm8yGXmZ -grtkwEQZygWM8i+dg4F+/fc4WwpdiZk8fS3rW8Uyrh/9bKUcvOVFJlNnX/Hl/xUe -5t4ZzvXl22UBmBBpf7RjjNzqMJGHjjNytipKfTgWowQLN+KZpu8bIel0jKHohEM8 -hG1l4aeEuGGUXX+dQzpN7bJhZjflslpcq0wBB+S2+Xc4W32fQWffybwANG7yUnts -4nbcIsgZkDJ9kq8TP0BzeQrWKqt7YgfivEaVMzgIKoaqgsIPTWsJdQvtweTFjZhk -Mrr8t01Rw/+OYSDFLdXc -=D0x3 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-31-1.9-ppc64le-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-31-1.9-ppc64le-CHECKSUM deleted file mode 100644 index 94ff518..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-31-1.9-ppc64le-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-ppc64le-31-1.9.iso: 2055020544 bytes -SHA256 (Fedora-Server-dvd-ppc64le-31-1.9.iso) = 97de2609cc575807711f9c3ed931b2a49f2d97a87968a773ffea1f8d1cabc365 -# Fedora-Server-netinst-ppc64le-31-1.9.iso: 649222144 bytes -SHA256 (Fedora-Server-netinst-ppc64le-31-1.9.iso) = af5c9338fc8f399b2c65f907cb906f9c4d1f9371782a4efaaee7a19321454810 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvP/AAoJEFDLOQs8M1nEUP0QAKctLAfc6Dhg+xD/I+V+vBrg -uzqeUw3hoc1ElFnkjrinr18Vgeb/UoUEfgYlJyd6wp8NYnI+E1t4eE/TEGYKqWoX -N+fF6itch/p9xJqvaBJGc7sQ3tgfsuTjKXraEOlY/5RfCq3hHWjKFxhsQcUzdZaF -znuifJFeIRhyM3OrA+sGugt1XLNeSs6Wr8UUvHqcT5YYfcqt5CcwMzSf08WpGjjo -LUgw5pSd/z8VyD66OlyGi/oWkLFYCrlPDIZFFlDJ/QWDZNCG/7F+ZwtDcHh3DJlc -C+XvjefYhzgC7pEb+f3u8MhwJ5+O6RBuJ6NX4In7tCFAUHBpMZ9NNASn5dCTL1Mg -SZfoJeYDe0BDPgY2bk+vt8Xv4QB/sbzszTIL4dGeVLZUCx/l0E3wF7DWBoii5/zp -imUcb1KQ0CcTiHrA79QeA0Uwtv5Uc556UrPJsdldwaqNBf4qOIF6BSnvCKeouft8 -DF+/XKyXsqBXo8f+tk9vk3DsUuG1rsf4oaSFFGgy3eSIpm9UlfeJKUWamPthTTL/ -8bPAdwWORuKPKz7Bjd4bIQlPIAGyKGBeHUtaRkNOrGOOdaUymoXHF4tRmqfTKhdO -MeQ7o7sXwniHchMW89yKd07XEAUdR7GAPKnJqYNQnfxLw0BSjbgGLJpEmeVTaNfq -n//YZWs5jesjCkSKhD0n -=YKuW ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-31-1.9-s390x-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-31-1.9-s390x-CHECKSUM deleted file mode 100644 index 7f8c1af..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-31-1.9-s390x-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-s390x-31-1.9.iso: 1807316992 bytes -SHA256 (Fedora-Server-dvd-s390x-31-1.9.iso) = e77417e869cd470355854fd68495867c854851f8f208843cd50f27b86c72157f -# Fedora-Server-netinst-s390x-31-1.9.iso: 507584512 bytes -SHA256 (Fedora-Server-netinst-s390x-31-1.9.iso) = 65cf0912582456e6775f45598c82f9ed64c1d64c9dbcd5dae51952baec57a36b ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQHAAoJEFDLOQs8M1nENX8QAJS5EUdxYWBmMVIFIiqjqL0I -lkWfVJEUsh96JDyZ+yKq/Knb6BVFArF1aFsbvVTEYF6Xdpmj+PD2J1Im+0HQeaah -ojwCuPOksk/1c1RbFpVC5x8XutBxmGqebBmoABwcIhxDSMUXDm0W1w8RniWeGu1J -hlW8Wdz+Ty0XnyIdGFj8QNHln+U1BEVIhTBgmKMGYPrrS1m5rNRKAFOofBd7ksa+ -LtLnfN/sjT3T+LOJRjmtT5JnLuVwjkLsvGl584bvsRvVz/qINk+vjizyfSoYhULi -Uc9oLnzFqebd/ljqhkngBG8s33Qv1/67YXfNHn7AJanb1uYq2dLr2rH9t4Z7bPTQ -ioKO7XgVzlZQCioG0tNj4Nj4BbT7Vpx4ukHeuljHm/Jl7CE1fpm3r3cJCg+zHyc9 -6qff8W8Gnoh/wfvs+/BdIoV3iu+ifSn2b91ChngoI6jaliyYfczoXwHv3u4W4Qq7 -vntlYez8rg9D6Tx4mlspDieyJc2R3IgwSp4Js8LLkXrOwNBAG+YTTysylfoxFTFD -TrvlpOFRyLeW2owto4dk+FQPWNigi3A5vZWrZWpRk2/5R48D4r5mDpqVaC+R897x -OzRLI0KBTNxuB+0sCwi2yi2TYrHEWdSBJRc5SkYWRF8Z+YgIJEOmwmLLHTPMdpxI -xohkcuTGIvIJWNNZkrXU -=DKxA ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-31-1.9-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-31-1.9-x86_64-CHECKSUM deleted file mode 100644 index 6b46bb2..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-31-1.9-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-x86_64-31-1.9.iso: 2138046464 bytes -SHA256 (Fedora-Server-dvd-x86_64-31-1.9.iso) = 225ebc160e40bb43c5de28bad9680e3a78a9db40c9e3f4f42f3ee3f10f95dbeb -# Fedora-Server-netinst-x86_64-31-1.9.iso: 681574400 bytes -SHA256 (Fedora-Server-netinst-x86_64-31-1.9.iso) = 5be8debd3e8fb4e86b9fbf67c7eb66ea598d2b7ad0c7ba8d505ce88067b43444 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQBAAoJEFDLOQs8M1nEgSMP/jMSvG1eY8+S+mKzzLXNRnAU -fDlPOnEQdsK4rOTeG0C/pyNU9djmczT6u+LY0Uz9TMWhkYevYFtYpLb2J7M8TWDP -2AY1MTilFthcHrepf+1xgRJHNVMxhVxkQ7PqGH5l9eqzhWhZqUm9kenAIx5HePnW -0HLVLBltGWckuGs+bEk9O1N99OZI0/247WnAVwgVrBe2EzmOTQGJV+iexIGrTF6b -Nucpyonk+d4VosdKvQT0nYDI6PQ4m87Yn/qlhTj6h6Mef00AS2kEWS6OURZFcBxo -H/XObgmkIP/EoZi944big7fVUk55emDm5eA2Xnj4jr/5Z0StiDj3Z6J0wnKwOpXs -r+OQ3mSAgB135cPMxM292cGVGUJOE7C5d6JlmSDeb68STS+HUcpCZ6Ls+1MBtfB1 -VJ7Cj79uo1PVXqEzGWeUang/UEy/RNwz3jvtCE7EWjp55sqRGnHBCTZB6P/wSusA -cssONZVJxVoAtMgZTNKQGmCGTFH3SZ9wWzHtxmMrY8M3Tzu61IOaJh2X0JSunorb -ZWQXaBCwNV64XYRx+W8rOg8XpIJRlL/i4kkB9W9ZTWlr7hyKyQCJYfjw0kE8e60M -qKShAKx+cP6NcV8f5l0LbOvy4XRfC+O4apdtVU6Q1AXibJvRdHX3CPgopkRs3kOY -UMtmtr6y2WulAKiSgkJF -=xpj3 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-disk-28-1.1-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-disk-28-1.1-aarch64-CHECKSUM deleted file mode 100644 index 91deb7d..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-disk-28-1.1-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-28-1.1.aarch64.raw.xz: 703742332 bytes -SHA256 (Fedora-Server-28-1.1.aarch64.raw.xz) = 0998225327f567fbed0d725f22b948be4d0e2108fa9b76f17e8b543e692caea1 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xqMAAoJEOCOfmKdti+xtEUP/25u2BUPdvzIOexLIneZge2r -yKdNcWqOdK65Mjgl2IIrzy5PHjRn9l5p08K63Qe7iQShGMWLVFbwtRICrMowDK3j -dMfegdGvefZJxt8YEkJ/UztItV8KEwrfYrKSXdSpqGiZmumGhQMswueqDiFmHhuE -lo4CPNHxZF6hB+Mqaw6AafEVDDe5nDwlKRGVkyfUA0xHjmRES0IS9ZAc/K1EJgh3 -NKHzEcIogEV7hpu8x+h270mCS4hJ967NVBUaYoBz+VgSM++4Db/a4YazKg8ylqdw -yiDKJkgB2ZG57EWgMAxfUrsJ7VbCWdnyE03GYS7ZJhrg6lv+n7bZpkMqE66BAXxY -SwUVe4Hz6gRT3heKAAEHj+RHSI8RVIcLiDQ6YMNJwrDwgw0vWf5nTlwyWBq+Kq0+ -uTJB1fHgX5ZqSFOygdPCr4iMC5Z66OE374RJ3PSYzjBATctHiWN5c9+JJhDx4Tgt -NOw6qwWObbw7JL0/9vxIhPbaaFhu8lgb8jj+Pbg9/wPF5nSe1cNAd9okpUIfrowI -eMvWEDnb9DiIjRGnCQ7KlebIbpzRwWakjY/n30zxynwWtfhbS9JrHFYdmvHqp4dp -Pam0L2dyaQV314RXLhE+hDPc47XOjZuTtdx2tR9sSeqz3EJTmXP73grJYkcoeG6r -g6cp0NDqJmCPgyzzhn+m -=05ls ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-disk-29-1.2-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-disk-29-1.2-aarch64-CHECKSUM deleted file mode 100644 index 8db177e..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-disk-29-1.2-aarch64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-dvd-aarch64-29-1.2.iso: 2929954816 bytes -SHA256 (Fedora-Server-dvd-aarch64-29-1.2.iso) = 2d7b9bfc8f0205474c2bea079c19f7c8f57677944dee2e20c002255b56ca48a4 -# Fedora-Server-netinst-aarch64-29-1.2.iso: 563779584 bytes -SHA256 (Fedora-Server-netinst-aarch64-29-1.2.iso) = 8958d112c394ad33a15bf801ae17e647ea2130fd7af130f461764ebbf56cf9a4 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0yslAAoJEKIKpWtClHa0kPEP/05dgtPJ00jXP4+dtzQb6+21 -LuqE7QGPYzhac9Zj0sCiOVXX32727UHjCxcwOt8SNAhWQKGFLEhtAxrrXe6c+1yG -OStae4CLMLiPoCux3uol0X4jh/v7LR+mpF+ITzGbyWYxPYm0xj4F08QCXRfQKVgR -LfL0V4fGdv8Xp1CzWMz6xxV+tFeQB0+Rl9YO2zPd1QDYQrTJZN75HiDwmJFUpkLj -VS57lRhVPnUaDXbYhnywsElORexMUIL80v5BRlGNJwQnYwmf+k2g6GyJgpfz+nHa -3f3UdXZG74z6ODizLPwtcrqitfE0RPEZMO/GsszHgnuRPDEbILyQPbEzGjAB2/nJ -MyQL0slsLEp01AVu7VQjx+AjRT/A4bfqGyosfcdqObVSNP6lV+y0G972FBMz+aFS -Ytv8CS/wk2KKDYwya+llayUzN1jOiEWCJqM8byz9eqgohBjVXl8joaVbW5MFhvrb -1VVOZXKy0LpWWsTaRZZZnefxos2sLNRDIrZWnbEaENiXx8AujMkOFnE73IYtZSoA -8aRZifqoNE8HHWQsC1bTSWNgi2wY4dCgfH1KXMEAPojokBV0T7Rh6TAX0q6QDP3r -RgT6EJ/FwbLWGF+c3u4D66doqLr/me0TRl9nDSTG8F6RbMi3nwSECCRkqEyMFFcZ -Fyt0KIDOFb/RDqNLwf5R -=1Y5x ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Server-disk-30-1.2-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Server-disk-30-1.2-aarch64-CHECKSUM deleted file mode 100644 index a089887..0000000 --- a/getfedora.org/static/checksums/Fedora-Server-disk-30-1.2-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Server-30-1.2.aarch64.raw.xz: 595495092 bytes -SHA256 (Fedora-Server-30-1.2.aarch64.raw.xz) = 76e541384fde1a118ea5844dc8e842ab43397b181e43cacb3de4228773aad01b ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw13xAAoJEO88ER/Pxlm5V2MP/A2ph5hXqpNNVGp/8USqc/3c -B/Qt2Dcf1s9Nd2fsZeU7qrCqg0pAm/B4PPhTYjPye7P1czqvM100NytazHOIIJv+ -2LitiizSedD5zAyUeF5StEeDGi0L5kWwvWT5AysngtsJfoynbiZ/9hFtD/8BM5BP -6S5ZSoNZI72xQyUxqVL1BbmQg1SuYGFNyA/O7kKcm7aq0E9AYQ+MYLqiPB33VNFH -iiiw3PekN/BpdcsHVU67KhhG2MHG78MD9Lb/xbHMM1A+wBXKycqCeM+URrF1HsRP -FVfXf9qFj9UQrOdLUB7HKrqil7XyvIQyvhZsbsda9FQXCFeoBpxmZkmpk0NlTaac -FngeCRXJxVGqgpCJkQzp0fSYQHNygXfh74Vpsznps+Q0Ex4Em2Vk5AlF8iP/XgXt -JFn3Wqa2IVdlJMdESdm5ARJILHRvRRBPvXYdabRVhU+L4xhwd7R9opdDaZwKfxjL -uelEOap4PMjmHC++fmSyX17QgkC/2Uk5g/eNgbY7KxOKcIE2ggrMvWnxvK7FMslW -oDfT5Bm3XzrW5dhgrR92s2gi369dszq62Ult03WKX/yka1wZpNKmVrCtLxfyMDvj -xmzLo1Gp3KG/II2bPpp2bQrzOCGfO0XO+Mrf6W8C186S7PUrHuUiyvDbIF/RvxNq -ld9gDAjOVd/BP2yJl3AK -=zbc5 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Silverblue-29-1.2-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Silverblue-29-1.2-x86_64-CHECKSUM deleted file mode 100644 index 066afb5..0000000 --- a/getfedora.org/static/checksums/Fedora-Silverblue-29-1.2-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Silverblue-ostree-x86_64-29-1.2.iso: 2112880640 bytes -SHA256 (Fedora-Silverblue-ostree-x86_64-29-1.2.iso) = 0167e4c08b188c623023e0eac259e29a46450cabb3dc1a495cf62ae249360129 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ytLAAoJEKIKpWtClHa0D3kP/Rics9wZzHX9HMMqDXMZPJky -CGZpmZLzZXkTaGrB3rrJagND6QJXOCzd6bmbA4ju7+QyP7HJHq6UVorRoa5zD6a8 -yWyD65RNf4izzQnYlWYJ9oWxIIpByByz+jJsFHom82XV1cJ8xQmfwI+2tLcrOzFd -C2ev1+xfJUp/sQZcJWeYiez00rE13BtAWFix8T81P0W/wv/0lnG/73c+GLzAbx3+ -ru9eP4lTdOEbcgdhTFj/vgzyFotxa8DXYeH9hqibv9uGCq5hXYPU9v8IKdx0N/Kp -jYoGAk4nsi6VYY2hGWbNIR9tHK99x0TiFMQGfioOUOJ2o20f1qtjUjvXopI/s8F6 -xOoeU5FYJMxLdil2myJhuHZpvAD/Vsq4OSs7/isfBa0v+YkIl/FtXLJimDYkxJao -NelSbnSnpRdCckM+9jOPc94Ih+X3mNDamCvDUKZQG1mVadYHns6+Pr2bLD9gb1EN -2dicIWn3xCNiOxERuPJkqQO4TmI0FY90TSSaPJcKyDCXmvmv1h8dXZ8i9TtJHeOn -TIO6S7UjwkoHVw0/dxDjjz8DvxhMUmhdcGOUo62CgTD+2xGPY/gQ0fVuCXhJukPA -6CH5jWZljXOT2+PzalFnCJgD8CARqx3gKAXr9AuIpRrtHMsiHDbbDs1sG6C5/zxS -z/2aoHbDlZjMN2pmV5DF -=+lbn ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Silverblue-30-1.2-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Silverblue-30-1.2-x86_64-CHECKSUM deleted file mode 100644 index f14610c..0000000 --- a/getfedora.org/static/checksums/Fedora-Silverblue-30-1.2-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Silverblue-ostree-x86_64-30-1.2.iso: 2184937472 bytes -SHA256 (Fedora-Silverblue-ostree-x86_64-30-1.2.iso) = d00e9a77623faa5504537d63e4d4a1767dcd3e162fdfdced7ebc6cb1aac14936 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw13tAAoJEO88ER/Pxlm5ArYP/1oD+G5IGZ3FTY1beZ2b59zl -ZR7P4rbn0+tPLHEu2xzo3hA4gIm0nLdnlT19IGS190iF1u4mvJJrOumQTJ2jEbHr -yhZ6yQtUpKo6StLjnEdxXQpzHWOJob9hp3EYc/4k0iHcAo4UfNmSaqE/TBRpxmrm -/jyX/gJrjjB8xm9PryBSJC6/Rpr8k+hPHPr1dOV1KAPD0E5ZCM0awphi2vfwk0OZ -JdwFGH6ZscYpc//E7dwI6YmokKpd6SnckWavGhaK5o4/FKh/Hb+TNUBcv/bN8mBk -xjxdA2ZoQM1Vgp68mungdjWwwwwoVXfaR8a9LqlHnudqYYxbSBFR0SV8IXfjU/l/ -PQZtDBavUO1IpY6apDrvO/Sh77xcV+o4X6vIKfsb05+a9U1gOvTiYhtRhUejcdH5 -lCEiFu9asmQ6Mrup/VdMppf48YWzvCQwDyr0UsoWHQ0TWhFsVdIEGQgG7I7QM6sQ -+XkWhGBWeiByENd3AXJvkr579YCbdraDxNQWmgVYoUbnqeoSiYjz84pElxdTASRX -NJjUWVb06W7yemNzgkKiFoyGPpbs8PcIh/xfkugQni42mrWUaFasdHeLZHq9euAh -05UbohxfK7mQMe1RbHgCas9ON+mSPS7ksZtfNa3u3IlRxugvZf3BcSywO1I28tjl -9nq49Uskmw4nqHPl4n4z -=LP0F ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-aarch64-CHECKSUM deleted file mode 100644 index d28b3e6..0000000 --- a/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Silverblue-ostree-aarch64-31-1.9.iso: 2242529280 bytes -SHA256 (Fedora-Silverblue-ostree-aarch64-31-1.9.iso) = 007da981acc8994334623e9c9e784f731f53740a157086b9a02a2706dbc16e91 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQJAAoJEFDLOQs8M1nEk3IQAJWK3u6tY+vXeJ1hl82vDMPr -Rfq0IeObRRrcyv3MYnkJjFi9MViJp60OCnHGm7hsi/LE5LUi7DbF56NJ3VHaAKxt -JD/PyeWwYdtfgyZB6k6EiQOMIEx3nTPBfnHtT3Rro0Fv5vL6dt+4NzfrCJpSL2yZ -yeB/oJW8JpBwQ9TSXY8WiRorSszbiNvsE2ndyJJUKuWHVZqgDgywuH08MLuyozQp -61M6NTpU/hOTNBxEKXPTuqGI7dBD3SYEjRJxMaphtnfcae/C0MPXWO/Z0WqAytXN -XdXct5MmQAHGlCCWqM5VwSymu4214pufetX2qiikH82mD+1QHFnNTY/y3MMgPf0J -HJlxLqz1M5iWPLljCiXgO0XKXWW70r8Df8Zm6xDhosAabFS+TFzLBJjiXdI9LmCj -cpiJF00cS2xk1Z/pEPZA6dzbK822EwDgs/cCy12j5t96YKsU0L1o6pVHRRIhmSmN -HqcjIpudR4Tz7bJYR+s5BSdy5INFdAzvxpoqMyOtpGlt8isvXHzC0XaE3HXFt1Kq -gNeacucZfk+lBl2c2lCI1Rq93TtrlkXIdylurp8UP9uwG237c+Gfk2r9aGlMZLnK -1Ew7mrJrlgutkkDEnrAPv9UlgD4mwb7kfWm+QUdfBmZSxFQWPLau7aqOHA0QYZAp -VNaezkg1pByDx10C4IG1 -=oLNE ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-ppc64le-CHECKSUM b/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-ppc64le-CHECKSUM deleted file mode 100644 index 4f05060..0000000 --- a/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-ppc64le-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Silverblue-ostree-ppc64le-31-1.9.iso: 2301106176 bytes -SHA256 (Fedora-Silverblue-ostree-ppc64le-31-1.9.iso) = cd23fcd3c36d5070dd849ca195a185b0d7fd5ab2a50afda056e55855f5ea5b5f ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQLAAoJEFDLOQs8M1nEeAYP/Ra2X2zghB30E8z1QICvpivL -2tdeXbBhSZot3uLpFJKAPSjTrOVjvTERP6CBiPJOwCKsPwZcibeCAHk1GTC0aMZ2 -jthfO0W5tdnmr4oFYOO2A5k7pz64nrTACixjowlhoyOJeGJFEQAGDeSMXFHAOQkn -iQIrTJPVZ/6YWbKZA6hTw++xbFJeAAxSqtnrmWBBT7D255EtfzN3Xz1QX/xbiwqp -vOwr79VSnoaBeZu5ujaGpi3lSAFEkHOtuYGgxp8MxiFxwNbQiwYbX04ZnRF40921 -iLm91giQmkCUNnHkOjqFYx95gg0Okb3TVT6Wj9qKYXufL6pOtcq3HP6nKv6zXy9F -agSppNrXXT3COe2ZDbCV5pNO2D2/Udh+p68wa5MtKtLbr8tR/pgnsA9njZ1NJ5Al -s89XqbXMS1m0bn/heuwkKqENmjojVIscDdd1rjkG6tt67tWiFHGWRd7tJuJY3kVB -uR2ajTJN7RQyHU8YMa2Bh87v97PgHbx2UfxLXfVjE8DsPg7cEQYC7XU40BM19aeI -wjeT727elaL+trPdDkyVNd7BuJXwkt/u9pbJ4Hw0/96KYX9s0p3IKDiX4CwgMqB5 -mPXb2Ao9hCf/8usEd7ms/cu+SUt3mJyE5hxq3STDGLCAjVhLVmuipm02Fsy3NzLu -pKwSIvNvx1Y6rcH0Hlp3 -=RmMa ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-x86_64-CHECKSUM deleted file mode 100644 index 582e9e2..0000000 --- a/getfedora.org/static/checksums/Fedora-Silverblue-31-1.9-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Silverblue-ostree-x86_64-31-1.9.iso: 2310733824 bytes -SHA256 (Fedora-Silverblue-ostree-x86_64-31-1.9.iso) = f9c0f35962f6a2a5b7ddd2c0b98c71cdf854c74afce84566eddc912cbfb9517b ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQMAAoJEFDLOQs8M1nEw7QQAK1W439N9CUUpOEGWFsMlEZr -gNs5Wsxs2g4CniAc8SxulzKkvQMeTfgUdPIXeLMtBO750Osii0w9V/0PR8vVKBx7 -1m/MlM5uZ0Z/lfnsoz42k71isddMcboSnsTfI7m1sZu3fyPVrYytNbd26qhNtlVU -BDAU7FbttP5FLVUMlH5ZzI7tELHOoJI9F60IbTGyiJs0wNqZGv+pE6nWoKzZKFkq -Dk4UXKJ81r63xBNFlijyDvsvLLbNY+ERBOHA8HrkQ0lF+d78/GrqCv77949ITqdi -erAClPS7dVZpm7iUQnkyd0tVX+wq2tyRAcmcuMW84qPXLBc7WTb6juEvSfGr7Dib -mCP8A2sfkiwf2rT3EMlPll81lvKmo0F75E99r+rGtYlqlt48MrqmmMn0ckuOOoIi -r6egzd6osw2ln10AoBzFqyE/quLiYfTOkiARhjSouQuHPg4PlXU12OhIQkj1nqTv -rZWVw/7KmR1h36JYeoHNtc7Ksqqq+vfSCKcoFghoo3LA9hSWFdECjeMl/SrL6MB5 -BrnXy/A1gdYzomk1MYxmn+b0avCfnfkq375oiCO69gwHaoi/J8qfIO6iUYNFURFM -SBCRnfoV7BCIpuXQ5biQ0n/dRt8OG1WnN0hC4IKsqNoUfq3RrXtgP21hAWmhlLbU -8qIz0bSVAnb/nhdEe8j1 -=0X1P ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-23-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-23-i386-CHECKSUM deleted file mode 100644 index 1de50dd..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-23-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# The image checksum(s) are generated with sha256sum. -SHA256 (Fedora-Workstation-netinst-i386-23.iso) = 6ea843bd126181b6ab069ffed9981889589776db94d631fefeff340803387fff -SHA256 (Fedora-Live-Workstation-i686-23-10.iso) = 1f3fe28a51d0500ac19030b28e4dfb151d4a6368a9c25fb29ac9a3d29d47a838 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9N3AAoJEDJHTPg07Jy6kZ0P/0PrAnrwiWGM6B5jXiDK8wDu -rfA0yBHG2pHulOneSSAHJQxAs7pfk6HjJMF+y2N98pHjvEUzHTlpjfpsh9Zbjp76 -gGDsxxnlK2P5Umukyric2xGbunXLM0bXyuxN8XD55XG8CYxqjd8OUVFk6OcpPq7+ -1CHBKBmYJ+fcWQ89N5cxMmL3E4QZNIwmsnxvl1jnaw42slWF3MVs5to3kPbx1rhN -0FTXA285LGaOMckwi3qq81WZSi0zNoApqt+XbQbRvcHTOENesYiqEIVgGQ4sMvZW -3LjnQ22tIdQxvAshlSpaEETsNliK+LZXDTbeeASpZb5JB2JHniLfdA1ag7A7VBLF -CEHOru88eazSoG4j85EO84wJ0KmwZ/uOvYtf5BAZsMv4+Y6serrsMfX1lzps9Vvu -0nwGDv11Des470oN/eYIwWbi9DofMXpNkUUDiEv17InlEtrgaY9RTdJkdDCca1R5 -tSAU1CQ5jy4iOcoGpGFen7FAVRmg71KoV572DofqpKvcSEiKd217B6a18wJr0cIk -n2ar39ViVQvSdVMqBrbe8xyKqhAkofxlizZm/OKPVa+Couq13a6LMgaFLzqWjCp1 -tqwpBFu9xOXYK5sPVzQKPoo0FVffE8CHfpXMWWV6hDlWM/i5j7nBEOwgPaXcmKlV -rQMAxVDM0D15DbWg1dUI -=GDQz ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-23-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-23-x86_64-CHECKSUM deleted file mode 100644 index b156f45..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-23-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# The image checksum(s) are generated with sha256sum. -SHA256 (Fedora-Workstation-netinst-x86_64-23.iso) = f38d1aca6211b6bbb2873a550f393d03866294e3e5094256feb4cd647c25a310 -SHA256 (Fedora-Live-Workstation-x86_64-23-10.iso) = a91eca2492ac84909953ef27040f9b61d8525f7ec5e89f6430319f49f9f823fe ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJWM9N7AAoJEDJHTPg07Jy6vLQP/2m9NYWcPo8cIZDw7fq+u5LC -g50R+8TQlY76LMzv0NAuIsx6pw3JW/BZSRVd74Jlg+cPK6te9XVmJ2HS9WoSWvPw -T821eRRbV8ou3JthST/ZPbcdy1L3Qz6Xbfu1u7LwE4yjgh+8fQJ7ZKANpchEuOhk -j9JK45vwbgUj9gWSQghoe+2dXOtTmtJAnPjTirYmeB0JJubwjEgT+O9y+EaUXABs -oKTUH2ej6qsLSWjbjcH3bxjaQwvzZKEN3KgKyFIBpIdeCVMp/JiLqHwQ8Fqtwsu9 -j2sv7oB+arE/RjOprgC6TDgbx753zoFmHo0maiCMCCFfSDsea8pHay3n7u/Exr/8 -8XE9UFXRMnFPFmdY21uE8SIilnE/Ig3BAqCIo2qN/8gx6bEAIaC10B+h7gtS2D46 -J5982pneqyw88MCLUIN27kx59vTr9N6DNPomz5VEgf2J7rmfE3ZbrIS45r2zJPjt -sbr6mjmJrx+sPWx5Ie0pgkjMbgQeZ8yN4GegyJwwhjRIoYZl3W7QyAaYJbKRfFPP -hn+oOoe3RB8Jhhoma29MezDesL9t8wafmPelp5sNU02ORvuhvwcpKdmPyku0VzI+ -PuYzDB19DCNjHV3UKMQ2BlR6m1AevCtra/WDqeXliwFWGT//iQjIBMwB4o2byxFe -R3cfguVlycgsPAIPKhKW -=Jvm2 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-24-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-24-i386-CHECKSUM deleted file mode 100644 index 16e6aab..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-24-i386-CHECKSUM +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Workstation-Live-i386-24-1.2.iso) = 1c96e1529cb25b08dac4ef29cb4f6eafdd9b6bbf008642fb4ae01a5e9bb31255 -SHA256 (Fedora-Workstation-netinst-i386-24-1.2.iso) = 94097f5e787ffdf3938aadb2a864d24346b090a3b09978c1e32912b8ce61dcdd ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJXY07YAAoJEHO96YOBtGUh9YMP/2jfbDr6ju68Ry3tsj5JHP6g -OlWUEwJhrKQiptDtzXGAontUcGaLUophbHaTY12bUipVQwwayZHEA/Ra7jtP+zM3 -39K4fhLtfQPJ2ebb/BA49gCmNu5TO/mC6u4xx8utttMEIHv6pbyQITtAr6BP44nx -hlzaQQlogoBpyEEckrhK97ZqOEIFLQF70iEny5ox7ZIhf9jjPBusNLeMk4Ga2dl2 -sSq53SyeznNdt1QPCCm+DNnqqDTWx6toxLQgoncgQvP9jxFxTz0m2zrZmPdYTOA9 -ArdiS0E/yxj14F5mvjBeKFFyThH6waP4macc2UuRc4hGZrOblgBB9Zz3FSrfQC40 -S3k6cyUS/XjEGc+XDcQX5H6CeK94jb9YGXIA23I6kkkPHqDy69gXhZJyOMraE2kG -DGq75PPYDYTmeQbahM3XlWyJTI+gVza47LT20zJEJ0EWk54qHT+rO30eMOpmW/z7 -mFzFMWidFVAgju18IIEo0T0M0CY+gdHbCBGB+CIDj1zio6SLQdVaHBrbot8UMEbR -92ImaCzzmmzftrZZfIjL67UyYECPTsqNWSaw6X6tl6oA5boQqG3pKJ7p3rzeS41J -VOm5fWVNDYVOIDk2+hg8qYDZtddCuLHpuG75IMsIRZa9hrNoLbmNIdGJRGeuRPnc -dQ5oib0A6naEjwS0yXSn -=uQre ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-24-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-24-x86_64-CHECKSUM deleted file mode 100644 index 0a780a8..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-24-x86_64-CHECKSUM +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Workstation-netinst-x86_64-24-1.2.iso) = 1d0aaa3dadba90bbac211729c406072dd91f67c04315effb50fd8d9e0aa8f6c0 -SHA256 (Fedora-Workstation-Live-x86_64-24-1.2.iso) = 8e12d7ba1fcf3328b8514d627788ee0146c0eef75a5e27f0674ee1fe4f1feaf6 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1 - -iQIcBAEBCAAGBQJXY07bAAoJEHO96YOBtGUhf70P/2US3CO/mUNdV/9Aido/F4bt -MdTEwCKh580k6OcDcgFu4R1pWUwNxVoJ00zQu5+5pElp6OfSj2TiSxDCpw74nxbz -X5dUvldPQJZcfhEVY1n029g8/eDs4jDbUjYp+KslwXGG06k80nqX8knE54hcdgfQ -TmAYrK+BWlAVGHS4grT83yoo2zWycz4akFU732Rg+z0PtII6SQbtzjdsxfkvbR62 -kMFslnbTEm5uHeUVY9dt8mps/73XfR5eT6TzCnbSXwO0FWygVHht7w3Nr0Bvtg/W -G33DOSSSqB6WJ49pGr45EeCBuYtUMieDYrh7mKq2VSm7ysvBbguWhBMQYwwNVJX8 -PvdNYr+lk2Ep03hwbcam+RcTgsDp+hA4bKzCxhgCZmu0oCMDCJ1mB/E1/LfV9yvi -oxqJDpXog+V1QQr1pvATpQ0yLV0VZ9YYJihPZ5wjO7GUeDNCOS/WKFb/s9wfjIkJ -E4dOIrJ51sk4fcOERybpM01kqd5Rcuyxqz0iyU2Ww2crM8eDAQfTz1TH4WWQyahT -qOKQU4Rn6NAqmhK5wRd/A0ZcF24DOmPWYbUYH3R7LqCj5tv4nAcD2ul8ee6/7q7Y -WrD8ubHI9fn8GPEmH84kgRGrGI3KRR9yg3TWQJA9p9QY4HHd8Z98+ngLCG5dNgJK -4wbQihL69PedQ96+EIKd -=zsba ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-25-1.3-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-25-1.3-i386-CHECKSUM deleted file mode 100644 index 9d50cc7..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-25-1.3-i386-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Workstation-Live-i386-25-1.3.iso) = da4a07c6758070f9ada0458664436e5d4a8bc19a0480c8dd03ccf9afd21b5fef -SHA256 (Fedora-Workstation-netinst-i386-25-1.3.iso) = 5be31b8a3f7158c9dc2a72be2032331e7d84227d71a03134b57861c9b058e86e ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJYLw0TAAoJEECJ2PL9sZyYTXUP/iuoGtD0AsLn1h4SRdWHbX0g -68HLy1biQ9ZexBJep8/O6uanZnBL+vQ3pMkJBzDTRrcX1PFU9pPddtJtFIcCaCXK -g4R5R6OM3vtaBGiFvnTfe01m7l94e4P2SxuAvZAi4Uq674mQSYnE4wKhIG5QZpoi -VcmjTTx9/vquiBux2PR1SMipiMrEZb+y4/xL5Ocvi/JLUv73AbVW4Eh6MqZ69+8T -AbC2/ZkjsJid0I2LF2upOUOOwNw37zArWc74tVkAzcCwFh3MN9b6FMQ2Yduu6xDX -Ex4ujNr/9H3XZa3xAZ40b3hREah55x2toGl9IKpTULt7LeWNHd4oq9hI6kF897Gx -hlJt6AUrswzTE2Vacgbp7q1a+5W+bsA9h7aGZAn3IKtE3di4P0MrOWTZCz6+q8Dy -qpitONGS7fGonEtdlzSaeijzM6WaHope791xHTXX5p05EhRz+veDv7xJs5zvgqEN -c1McoeYsol6KLEMOcSTIydwbz7QmyYuJ6UM/BtWZU3YvtS2cZyDXESaaVoo5M9Pu -XWbBJ/NxerMu9tAxgdRGRklATO8cmkMLGNcEhmfn/PASrLLucLYAzfUTySQimHIB -16ByTOwa5hvxi3TUs0B2dOjZfXs19IE36NVGYsb1ARSLarL2tEGqU0ZFLVz2hueV -cBeTnRwd9pawRHkeejr7 -=qktz ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-25-1.3-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-25-1.3-x86_64-CHECKSUM deleted file mode 100644 index dc6980f..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-25-1.3-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -SHA256 (Fedora-Workstation-netinst-x86_64-25-1.3.iso) = 6a1e69416b0d72efd2962ce01bdad547074a32b70f7d70e2e6436d16398522a7 -SHA256 (Fedora-Workstation-Live-x86_64-25-1.3.iso) = 818017f42a2741cfaf20e94aecf6a63d1b995abfdaff5917df7218d0d89976a7 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJYLw0YAAoJEECJ2PL9sZyY+tEQAJ85l6JjWIjA4+0XRoHIBS6L -CCEbTJemadfu4b+wwLDKg0s5KUfYlX6tcbXsLyDRYy3G3xpGQf5htZsUu33Nozkm -Zm+tAAZy8Z+olduBblx1D0s9+EH8MU725IYKY+1aZj/U1KQbLZRubIiItjGPrUr0 -3l9n+N5entyFGT9d3L4GCDulHaKlO1SEHKQvjAgY3Rgz9lG1vUK5Nmyydj1rFTit -uhwr9eXvCv8HPfYsxtsm1AoZYhcqtDOd8OvnbvjZXMlpggVJVo74000TrSecwMlE -CtjaL+sGxMbs4im1WskW58kqgl/Rfkw7LdKEJ0ACbf7oRByh8TKqH4W1MSJXprix -lrmTP8JlU4U9BAyxuHnynCCs6QRePBhLpJIXpT3qAotCdfvPuNHeZhf7WW0XJbPD -Ds8av7w0AE3m/mOkJU0aavDfKZR/NHCdRP4rNV0OBERVLRykAFX2yOBAPg6vKFL9 -ybR/IqYeZsBO9jBGD6TN4xuZH5O2DI82a2q+k3Ty0oj+bB7MdbjWpE7rURGTKhpg -3LD9DgpKwCiL4L5npLsMTWrUESML8hPyYKHAS948MOf9aN+2r+ATvW5Wa//TTyK6 -ITnfugTYmGufZy+sL8eOrWYVyjgn0qQU7JKopHw/e7ZOQeUnOUgUeeFgybYwiWgn -/j/6pMc4+9ouR65AeN+l -=KAZZ ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-26-1.5-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-26-1.5-i386-CHECKSUM deleted file mode 100644 index 59e1166..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-26-1.5-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-netinst-i386-26-1.5.iso: 563085312 bytes -# Fedora-Workstation-Live-i386-26-1.5.iso: 1668284416 bytes -SHA256 (Fedora-Workstation-netinst-i386-26-1.5.iso) = 3b51b90cf322f7ed35bcbcf475f562bccdd320a06cf25880fa14fb683c037b74 -SHA256 (Fedora-Workstation-Live-i386-26-1.5.iso) = f010f48edef357bfc3eb204239fe06833075e3af248d9fddd782bd42fe5c87f2 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJZX6UZAAoJEIEqa0tk2rhdGjoP/2dfjfQa+dq+QKavBC/jk86G -/vpdR9XmT15K5jGRLRT7it42GWtfpgSYFJzmN3eDZgxzjicBrKJfWCfQuRZJkzuI -Z3DIq1mRugnDwIu9Bgz7ek7d0pINyaDHKuxKBLSoYRauRUp6010wo1AxrDBCDB9b -RvWFFA9vA4ljPngCW6bdyN9zC3caZVPPQA37LnjASobEVZOFu4k6M8vRMueuHhpR -imRv0B53nYWTURcUXeDgqXSaxpWsYjxGv4Jue4t+nkk8Ok9XxoxE+bMRFiPXGC+9 -y7urz7t9hQX7K2ObxlbCNEug/P7Uah6NI0byYYFhCi5Tu5HdETuzpEfZlIJLjH7w -lk/VSFk4twkGbuRaTFlQ8mGlOg7KxOgF5RxwjwlKhjM6fukRWHwV3HUciquhHn3q -pD0L4jzOIVRdCVSqlI0B09fQKjNz0t+oByWCGhFjRDuDkL4FYmfpOOnwnvTEPYJf -CbtoEDBUDEpGT36Ytw9HQMuIVOG95h95Sfb3o9IpFu5r6y/nwWK+lpZmDAXPDQqD -jRe5a1cZKQmM2D1J41IvxTnOSP3bxqH6NlYujN6kPiyeZ+N0/wn4FQ2LkJy3fVX/ -cQHYfHAszFrAu1Z6rK0LDwewsgt7g0I9ND5ceU4875NRRZG4y/QJAAmBukA0ssYu -ndNookGnmKNbI3So7kCv -=fP5e ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-26-1.5-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-26-1.5-x86_64-CHECKSUM deleted file mode 100644 index 2dd1e5f..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-26-1.5-x86_64-CHECKSUM +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-netinst-x86_64-26-1.5.iso: 505413632 bytes -# Fedora-Workstation-Live-x86_64-26-1.5.iso: 1563426816 bytes -# Fedora-Workstation-ostree-x86_64-26-1.5.iso: 1769996288 bytes -SHA256 (Fedora-Workstation-netinst-x86_64-26-1.5.iso) = f514040516dc512119aad6316746569b231e157724d4f257af76825c483e1598 -SHA256 (Fedora-Workstation-Live-x86_64-26-1.5.iso) = 6520f7a4daef76e68b73d41ae7cfbc743fc46b68317a4d207eb7ee39bcd43a7f -SHA256 (Fedora-Workstation-ostree-x86_64-26-1.5.iso) = ada01ed9db4c0ad63613c4d14e1463af7e9ba5eb9e455221a38af10cd77c9b16 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJZX6UbAAoJEIEqa0tk2rhd0Q8P/RO3zAYC953pkIQPtUX/pOmL -g667K+WxkzGkr5AtelgJJ6d/ou9mROmQMP0yprKPFNV1T3LUuVwMONpOt+iS6XlW -c/EK3hvl2vDndiJJAPpicLs4ikvoXyD0yMzOWL10f/mFr4STwjSV7iIWJBJlPiKo -gHUF+17lEQ4VZ5XmvBMZos8fYgNRTbxPZ5Cp6QW0n92HUyBVLEVjRdtpcuemb0zx -OslAADXlMGttAZEt3/x5JFZh06TFanU6zBP8jMwCUXc/cXyvhj0CnjZaJmSe/bbP -TpDJBbMsI1UsUbJ6fen9twmaPNkmMEw8ywUKrnuNe+uuasKmWRkBNwcOL6lxWEJh -mkqeMoXF5/sw7tu2YwDh8574du80E+AXZTSn6gwRbI3yOM+DV/qiFKSRKTLN+PG5 -voJ9MCHm/BlzFYkwcS+6GfcSS7Sede8ffVVGkp0WSJD1/qTI+Ov/AcRvl6mR+4Rb -0zbdf3EjY/pw1vfYgEpBsiRQAf8bL4QWKNVcvz75QcfMzvQN9/9UyoVKlfSrK0UX -Vf1gsHQ5zyR8bEE1kProxUdvvVufNUb3k0iBOmj+R8wsiCPcBhrtuBxg8+Jc8ozk -fuGG4TKlqrlH0fPjZ04A18fP4CVBlpBWptYbkHKL6BzdvyGi64WriS1ovTxKIiWY -UBVD1d/r0sJLAB6+micI -=hynQ ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-27-1.6-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-27-1.6-i386-CHECKSUM deleted file mode 100644 index e309f08..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-27-1.6-i386-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-netinst-i386-27-1.6.iso: 593494016 bytes -SHA256 (Fedora-Workstation-netinst-i386-27-1.6.iso) = 2fea0ce59334b8b3daff0cd7fc529fcdcf7f82ba8e4abd9ba473b7b8df493e58 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJaBfRHAAoJEPVedDD1KC7k/a4P/1qDxHgqd6MFkMJA3/x43acy -b5Rrzwb/DKvz9RPYLEbY3VfCJFy2+zRkJo708qXWCw0EaUXrOdh/iNiqddV08WC5 -8n1nP0TXurZCr3qLwhD8PoZTIdC6lMYVZ5mlZhiOOIG1dLkNxN3B8pCwhET+HDo0 -jL+D748t1XqFDeZ98qkNR/HoVrbyOZDoGdWvFz7poKc1YOLz08yu6spoVvfwdt+4 -YTLANJIT17YQQfgetPWx2WnHC/ynvpQaxFXIhXXoYjznwkyN8qPnpR0O/T1cwzuG -/yN2vJQDpc0y125kmselbxc9FM5pDtyiV9ZT0ce6RMZaIcJFXLHi4TRhtZfDnc1q -R1LB48pb6zBETSD1Ns6oQJZCEy06veETPK+0lyjAmDtHLR/Ql11B5WhHhsya/KB3 -FwwR5mchVUVLYjKLih/Eu0XDpD/jGpa30p0mPHLi8CFb+BgTQvihl4e9B5eQDndz -0/GOb5QPJTG7CGcH+JEAwobU6Y3vGsHldH+HHw7Um2hCi2sYLLMM92AfDRFggBqj -80AcSJ18HvwONoevH20Fm0HJKk4PTo7a6NxQqEs30XK26I0kdJMb94fzsjJvtf7J -0p8rFWgxuIUpFYkLZA3sQrTyIOE1UXzBecdgmuXGAfgJsc7cBwfHr6Kc+x3wnHAF -V0xplOPM8sdmP3k5sctN -=rRRX ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-27-1.6-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-27-1.6-x86_64-CHECKSUM deleted file mode 100644 index 2bba3cd..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-27-1.6-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-x86_64-27-1.6.iso: 1631584256 bytes -SHA256 (Fedora-Workstation-Live-x86_64-27-1.6.iso) = d242345fa6b5f8cc80e2317c46d15bb1fc4ad70b9a3516c9bc2fb6f3599c8117 -# Fedora-Workstation-netinst-x86_64-27-1.6.iso: 532676608 bytes -SHA256 (Fedora-Workstation-netinst-x86_64-27-1.6.iso) = 18ef4a6f9f470b40bd0cdf21e6c8f5c43c28e3a2200dcc8578ec9da25a6b376b ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJaBfRKAAoJEPVedDD1KC7k6mIQAIBwrpYmc1zYBcQBVMV2oARg -9uuRt6Jnes2RfEARo6DphcCceldeIf+7nDpiK9iS29z9DoepTukQ4GXwKoK4y+q4 -nbt5ps+KZNWvqy672JdZW6mvfG4zbebUWam8of0PGV0YZc7JvUsRasiqeMRdE3rs -N+8Xnpux8C8XYsi5YiQ0qfnK0XrH2q8SsDLRQnPjf/vIKZxOZ5KtWvXMPrhqhgX1 -gLlSycEu0ZiKsArhIXsms03wLeC2C6ZEexkMiOM95yKXJD4V4N1uY32+EC8plkkv -g0FCkEF9VFWSl7jpItLR82reWTe7FPhlhIHBIXmNXkaoa7P75B+8mGzBwFlhRWgc -d6qe/qcdDCtRWWyt5qFkqss1tLr6UtLk2OpI8/APOJm8gOl8tBLv4cQvL8v4bNat -ZDijfnxB/TgMMkmP2NyGCPdq7pzXXa13//lWsT9jvv6BSAH9kkEjRx6B/lPxn/cv -jKq+vaeenWKEPyYfbfjJ4vivd3Bu4tZGC+GggyVeJeI1lqMPd1RvEngfD7ctPiX+ -jOSYHFXysD+58jH4AqXSuOgPdMSAJ5zdc6QNhumR/ijOfGnGZYxr9kN3IlFvC6Cj -TMNSoP1cawr1ExKccKuxjwyjx7MHGZG/mvDfgRnXaxENFv9fUjP0InMnI87+u/CB -SVcPOzMcvrZ9EBXfEArv -=WREA ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-28-1.1-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-28-1.1-i386-CHECKSUM deleted file mode 100644 index bc31d6d..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-28-1.1-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-i386-28-1.1.iso: 1747976192 bytes -SHA256 (Fedora-Workstation-Live-i386-28-1.1.iso) = 51cf8fc04e127bd65bfe33c4f636fc7f3a162353c06b36fe24dca145f4b52514 -# Fedora-Workstation-netinst-i386-28-1.1.iso: 562036736 bytes -SHA256 (Fedora-Workstation-netinst-i386-28-1.1.iso) = 5d348031498482e92140da0f4850f83f616dcbf3f511c81e4d81edb9701c7994 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xqlAAoJEOCOfmKdti+xnoUP/jHoFruwbJRGLg8cyS1SJIhW -Eenp/ekzxAzwcwBXcur5o9T3XxgwdjAdYjdpVvd2ywG/JZd1YgesB+7nlFGd8QmG -XOdWE3C2xrgMIiaPCny4CEzKFxnK+V/e5I6Q1FT1qUArSCjklpJnkybtJgIRKHmg -5TC9FFgSYmr3EIEv0CUPWB0WITOh94Xz7nHIMtFpUN5kmebXuHAlD3Gs+LiQSW5E -/le/TKKKkea0Le7cjKawJ+Z+h+mCWxivMnKDhrHGdRT3TYdtWmRSsTxumO4kUeid -xrKDWT+ckKjUnGhkiWcaOEeqCms3j6EvXCaykW5RjEQCY2dUD7Ljdgok/JMjfrTn -9kmuduwr7WD5YothIBhJ8GTBqO0N3eipVlNElwIXFUSsgZj8/vef3kJ8LvBSrh7Q -urpxXlBfCfx6GDuS2MxT10LZ9DAnHVb3QjwdjNvqZ64nCDjEXaacSVUH3kk3TL62 -uJWMWfFgxxaSy++2xMoqU9SsaeCqS+Wc/UqYhauIlS0huA2nWOHuBKG+SeVO1JXE -KYlxwNJA19oVCuTOFJJtRwtl1qs8JI1r39WWvObA/w4AJMODAZzCFFmlr+CHLT9M -byM2FK7arx7ufBcKD1OUK0EgRor+0lemY8l4JaI0EK48FckhzUkQkDEl1yON0mtc -IHqCB6ir6vDJ+sNHxtEA -=A3QR ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-28-1.1-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-28-1.1-x86_64-CHECKSUM deleted file mode 100644 index 7ce4edf..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-28-1.1-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-x86_64-28-1.1.iso: 1787822080 bytes -SHA256 (Fedora-Workstation-Live-x86_64-28-1.1.iso) = bd5c9ee34b7698eb0852a320da4fbdf616222a493d99f6054aa96afa96207bfb -# Fedora-Workstation-netinst-x86_64-28-1.1.iso: 611319808 bytes -SHA256 (Fedora-Workstation-netinst-x86_64-28-1.1.iso) = 34da8b46b23d786bb1d43a77a4dcd713c446fc70a4ace0c6f52e43b086350562 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJa4xqnAAoJEOCOfmKdti+xa1YQAJ/mItOk2ASqp9mALhzHt65E -UHA+go6vka3pT46+WYbIRh47gN403j8Q5EdwnjiMWkVTsTGfhPuOluu+pi7URC73 -Wt2b0lLDY+A/54/bHgSIvvkNGsMGQd9WhBmvvd1tjI9xlrHkS7t8vHDh0xJtvAon -pI6y6Ajr6O1mFVY59nLi7d/4zXMFBJ9/kxBWtCAzaxJSrUQaqpRGHQuFOfa46B5S -wbj2o7zfj+eFDxB9Nx2kPoPQ84ieH96awIRm1ff/f7+CulvgrgjsHsuDOERLNiC8 -jEBU5boxlRLVBSlo9kSpSY0aGkdCcWyxWYVJaxPnwnBJCqDlxozAOjOhxr8pORvM -V33G1IBISl2pQYtU/FFXW63Lq+Xwu6GDJ+92qwFjdY3QdZ3JW2jyiZxgwWgSgqH7 -uvc83PktPohovCfY9nFUgmCA3DgCG10JWIdR+q70kie2YtqbvMwg8+qDv6qvLAiU -nRLfpK/7QSf9WHW333UkB2OPbTwkKMmJ8tAdp3F/sIEnmbDyRispJ1F+JB0dp5t+ -rIKE8NTr/go1DHRb7CmEK9SlG38YXt+yG9bhitzbFnVGdkdwPxoWf+KKj8Letr2Y -eZLCmqxbsLnlfkr7FU9VuatcKULq1rY/iOdDamVyFFwzmR4RKqhkQ/nD1OzdKqfk -eR7mOzSiINbHRlKTl6mI -=Vzvs ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-aarch64-CHECKSUM deleted file mode 100644 index afe2707..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-netinst-aarch64-29-1.2.iso: 563617792 bytes -SHA256 (Fedora-Workstation-netinst-aarch64-29-1.2.iso) = 74a85adf18b173c55beaf23e26fc1600ba0cf6d121ea9d2f949817c1211445e3 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ys8AAoJEKIKpWtClHa0X2kP/iOojtSr1ItQtpZTXOtp7F3K -XSvKnk9pcCB133aXZadFb8eAZKJPjzKi+8YYGgfOlY1h9S93+pPjZQ/15PCwzW52 -dg3krOs18ZVTBQoSn3T5WhjAsWqz8ra1MG81cSSaOqvTd8RNNm43Vg0SIsgj5rVq -6AHjasvBMGVct+vHsWga9HWUICh97Zn/gkYKdZyX1Rs/5RAp+tMsPhYyemke+KY5 -2m/FbR+tAN4s9rr+h2p26How/uRDrP/KHCMsPwiwK7VZK8oicKC+Hp/6mwM9/za1 -d9wp5nJIV7Q3fiPZ1Aop3iDgugA9redPU8tN+q7eOl/MK4T+CP6cbC2y34GGi1Zd -ZYSobcIycbk9C2EIym7hq4NvMLaBDsL+jRHqtvHYoKnIlUTbK9yAgHXfTK/8BDqi -DfBQ9yxIrvrbg7026n8WuffYspWbu9WrwJz6tyiMidft15nrFaVkWULmnkPkbZ7S -NquCMGaisAT0ksemRdBrE49+xV/66GU3QErqsCGA1JiO9BUDHjnD6tW54qFzNXFL -NO8wkkkvM2NmUtiiAbtZuzx+XSSqhWt4Z4m19w5erWIihzaRJMx3k2B9IXbk4Ysw -50HVVlcFV/OdLBg1V9B8+jJ18mlXJfLWbHael+mAyMvgoS7FVbWgemLRuIZoxDfM -/CALf8aM4ttkZs8xdjGh -=1a1B ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-armhfp-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-armhfp-CHECKSUM deleted file mode 100644 index b37fcbd..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-armhfp-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-armhfp-29-1.2-sda.raw.xz: 1492820956 bytes -SHA256 (Fedora-Workstation-armhfp-29-1.2-sda.raw.xz) = ad2ce0a8736b42f9d21294a4649bf63d15ac92f1659ea2c6453877f07dd536e9 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ytDAAoJEKIKpWtClHa0S74QAIGhx9QeeI3zL3i7dVzcSXaS -ote/cwg/++U/yGfAxZg/KoOu4VSgeqDswGwm4ErImSgnDJlj0ksQONh1l4vUv89i -rdBEb9DX+/KBWv7UQ+2BPzyBSF/7JOnM6ltis5QZ1dk0kr+D3cw2nGy5REVcO6U4 -SMsaBnPqDTWvSSN+xcnccFqIWuX36+sPEE4uPhFZEJiDJDoVyqK/R+VGs3nDfQNr -96YRClttjuwgeosw04ScC0tLF0kngkpOhIk+QWgcJtyUqNUCxtJm1HcO5ymIEdrA -d0wpx+vTeIh/C0uL7VjPurSrf//YSYaObFTpMUbuWo98UZxH6nVYgjptZixTEZ8P -7W8SbfWW8kAIu6LAHc+9i4aWPhrQU+fn4+rXG8lJgf2tF9EPD9yIrlUy5VIIUoU8 -4LDcZMQXdPn1JEeFt9nHxnHrfaWHWmmR9PvSEYiW8L7a2xp0xPuykedberuGC9Nd -huMzoi/jgOP/RJMCodeBmGf9vZN0UFWiqI0W0k5CdyvM2ekOxH4i8xseSMsRx8iQ -dDVviuSGRW/7agL3hEx0L4pTb6Hmkx/TboBvu36E5mN8Us/CkSm/xx5/k5XIi4uQ -DAOxm22ncQl2a8/i6dDRAteHaLJ8sgZBCQYfaq+PcQvIstctCsFasJ0C99t043Td -10X5bu7IxptV6A4wJDXl -=DWbt ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-i386-CHECKSUM deleted file mode 100644 index 87cae65..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-i386-29-1.2.iso: 1889533952 bytes -SHA256 (Fedora-Workstation-Live-i386-29-1.2.iso) = d258361130d1b040f233e1e5b14f71d1c6c5232096f4e8cf4c532d0d1919c246 -# Fedora-Workstation-netinst-i386-29-1.2.iso: 576716800 bytes -SHA256 (Fedora-Workstation-netinst-i386-29-1.2.iso) = 9c6fad844b01634f873be67655fcf4c8489801208b79c75b1788f2d67164e725 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ytGAAoJEKIKpWtClHa0fk0P/i2a39KH9rem5Ck3mFAI4Mii -LZnfD/fAXx3Q77jalcdnl8Ay3ClZathhTSj0RX1eiiILGBmIbdaKwljkDOS3X0XL -RTi85mSBjDJ2XXRmpVLQUrGpYkR8s4pmW1BaoL0XckX49YKMwxCGk3YKy4ska5XA -XUnWVM102CIYCesV9KuoiIJkmeKjeFzm0HZNnOIBKnupy1VN+iQ35rveBuh8F+xN -wU09BVdJbZWpzn5WMuzli2utEgHqRFy5FMyvfGeYmQJPyaiaLzzIFUv8YuLnKr/j -uZ5N3zzUylmasCldo//o/oHqMDdUaxLtOsa/TwLnH0HMttC2QzEA2UcEJfy3rDJi -K1L9RNyLWv23209y3/AIjk0cBba6ok6L8fgQoR+OwK2H/DM2pRgavtN1q39Ps0AK -n2aJTsAK24akPQJLiSNgwHfw3DsVmOx54V+gXuDGl6Q/RvPn53bYZXHshFPU+28e -jnTEn/HSL6iubFUywJmsWE3tYKbE79wXFQX1Nhndz8GB5B2CehIZertA/iovH9jX -sydnKbz16daJx784M9L7YUz4kixQAXxs7Jf3M8vNLdX4/RMnwCn6qN2t+GcIjtTP -bM302kZsISuAjUBKq5R+6e1M3xeSkZcRXBXgxtUk3g6lfDVwcfRjW7QdyK3SRyfK -uBO7kqkr9eSV3Osqdv8m -=0oK4 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-x86_64-CHECKSUM deleted file mode 100644 index ba4edf5..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-29-1.2-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-x86_64-29-1.2.iso: 1931476992 bytes -SHA256 (Fedora-Workstation-Live-x86_64-29-1.2.iso) = 653cc283749100e9b46625d23938ff890ae29482bef142f5a0f99c5a5ddc03e9 -# Fedora-Workstation-netinst-x86_64-29-1.2.iso: 621805568 bytes -SHA256 (Fedora-Workstation-netinst-x86_64-29-1.2.iso) = 6554404b66d38b89693232966d9290ed62156e32d1edde4074b1d25c97a7b10e ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJb0ytJAAoJEKIKpWtClHa0UfIP/iQ8qK9DOlxXCVNs9FkVSpPJ -bTwWjvUjzBndEt5JhIJyLUFqMMfmv0bhGL/DY9GnzTz5t4OLf9HqnMA9ATMHF3II -Vb7GQkS3Je/p03SFteAKvw3PSqpuZyxudTvvmNZxv8295/P27s+UiniHnqUohPtA -AwU0LXlv4Ubwn23Nb3TZJx98QuFbrUZPl4fhiqrQlheh11S8XuDVMpQFecpEibO0 -98oJvtPfYbVku6YK+ke1r1g8XX5hOwubgA3/TvxKEl3WPG8jmVkjTBUF+gnFB6Al -wrAoHsW4B9MTTKCF0gzp47IG7RQ7gQOlX9Fowgp//zICq+vYwTDKAX8uoWO22q5L -cqoL5oSiAV5dXYFPsMP/+DDH5bjk9YYQIGdvqkqFEk/1Hz4xRJezOoUa6snBkIDr -ZKGC/fzTduVq66Qpz51EROP1L8DLcpZOu8QQbgMTqLlsJwQec+NX9KSnB+iYkSVA -gdjsucXZCO4qTgJByvqRFpzO3WInjAgiePJmTnpzS8w1auXj+ltlT0QSgNaS3CXJ -x0TquSfdKncjgDft5f6siYqFmEwhiqs+a+0l8SsV4NGsR6ZHdHziO+gmRSMv5mv4 -DgKUOOXLVFCwEFNB6sTsDJF6audd/SXM/6DZm2GLAqZIZYUqWXdCuD1Y1vWHp+4/ -bVFEoFD+aWU3D8hAysiM -=YW3b ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-aarch64-CHECKSUM deleted file mode 100644 index 13aca7d..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-netinst-aarch64-30-1.2.iso: 576702464 bytes -SHA256 (Fedora-Workstation-netinst-aarch64-30-1.2.iso) = d1673f767e2712ef3c46631de41ecc9cc3f0f182e6d1a6e8a7b1f090f4c69bc6 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw14BAAoJEO88ER/Pxlm5b6QP/is+kyiF7I07KdN0ssuH65nX -3n5XLp8iutJAe5d6oiTifwFQLM23MJj9jYrRXXEHYQCbedZZ1qY4xma0frShhqHa -ewo10RFFBqGkGPnf10KOYn+WnkUos04mVgIkGyocNRqZxj4tLfUsOT1PeHwfJRlK -eDhlfcHqxPEyA+E1dVh8xV4cKGAMXJ/1+VtoYWw6bZHujJ2C+6m1Hz321dJtDIXu -VT9oGIr4R55bez1WmXwjG6lN5vPvKV833j7SSCrvkMipzHnJ48pgm3S4+vT5fxbb -/u3zOq2UD3IJEII+dHRcHKqTQdFqvVXpZpD9gnCcRZb9mM2/i4HvQyNnKCRyVa2o -JG/ihzay8OgCVuSzMEXJ5NPsHFZ4iJ/stNRKA/U80gAQUc4SjBKG/VZ56HnVqI9p -cgYTMQ0mXKLr18fgbj1oYeBEc/jYp8t8hslNu7RA7+HSZeVSlTJyJIhvm/av0Z+K -scnbuzVsU/c/+9v3qd722NpgCOQnjjRWzGkQTvUQbwNKwpZp98w2JeVvpjYx6KrC -41XQGpCXyo666ZR5VthOEA4gA+uTX7/sW0UH9JJ/ciQRJ5NQq/XGYM58lKEqmBKO -j9JWNqlRfNtjONce3ZLYeuXFmvbVDyHBdUVTadryDTLyVaRV2q7LiWgu41o+fHwa -FARjmKoJYWHExAurjd+7 -=e89A ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-armhfp-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-armhfp-CHECKSUM deleted file mode 100644 index 2f90145..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-armhfp-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-netinst-armhfp-30-1.2.iso: 640565248 bytes -SHA256 (Fedora-Workstation-netinst-armhfp-30-1.2.iso) = de3d5aa5a23695e50466dcf6a52d77eecef8b33251f046759fc7762c3c02e4c0 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw14FAAoJEO88ER/Pxlm5tGgQAI3PFP3cN14WHA6Pl2hFP7CC -McZO1KiuznK2MpPDXy36ssooFB3AqFLemr2Du+phqCM7JxRpnNl0IWIkQ6ZKtRzb -I+8YQcXRs46BqEvdmOQCTtye/z6crPlSNcKA4O3OPg5boJUosLq9FrCjZVKN8TGr -MR9PL9uvXYONV+aUnrXkRjgpRtockPKWPiFl5fbxGlv223/EOmiXByxNfSGSHCXT -gGXIoJS4F0wQFNYmeY3hwPnRcupL5Nb2EB6AIGClPg9D15Uijn8WdxB7ZjLUnZ0K -BUWz7yHhXNVK5JrXZ7qadrcDTwrH+g2PTBjfa/JfQRqtnXwPVaQwy7gPZ5wXzinR -stmRCDW87eVWSS2URlWlbzeWPQKgTOxpdubHiuFyDEQlEzC/dUesJ2bxyDkN+Owz -XyvadaPROyXqJznqL4afG7xRYhNChF8JkNzZMzfoTu1FrDS6Y6FE8jPOyUrTRhpB -9Iol5TyKJdLDK8YvC+JkXNshRoMZZaPgsMc0Z62icXPWqcGUrPnLwVecg5W/rr4e -4rgwnpfyIluoZhC/y+/rsuAMK2f0GY8VADHIfmt77l285fnhDI+dYM1N+Juoj3PT -MAvf9+XW7yQCYkGQHNOVoNPsWhGZWyKS5pZIFSga5+jHgZ5CaJog79bH9hOWQcfU -p8tauONc3Mkm/nHpCEgu -=HH7D ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-i386-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-i386-CHECKSUM deleted file mode 100644 index a79bd6d..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-i386-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-i386-30-1.2.iso: 1890271232 bytes -SHA256 (Fedora-Workstation-Live-i386-30-1.2.iso) = 78256b0646c8b07a1990bc2729bf3d907b405a8192baab9f4dd9c3760134067c -# Fedora-Workstation-netinst-i386-30-1.2.iso: 579862528 bytes -SHA256 (Fedora-Workstation-netinst-i386-30-1.2.iso) = d0c0c1196c5e8c7dbfe7c33fbd06d29dfe5885f640c99b98acf4a99f1efbb0c6 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw14HAAoJEO88ER/Pxlm5vt4P/AoMRaE5i1VQkV4grdO+lwmY -tjo75rkUDUZVY+KFuyuAbJZN/ejVc5jUkDU5aDSBPJe4TUqtL+nlAMYCE3H7sVMB -3o5KZVEbvsPTz1kS9divycF5UkVWaO0wv+M9DDIgfv3ztSLE/q6ckWvXwqBPb+rJ -Q2rddH+I3UHWtW7xOsYpWlRuLCxB8iorboIbRwu/tVDBAU8FRHVSVvLQyLZMW8SI -BbXwoS1f952UooWVv9Sugl35qZiV0scc6WT86HS4SvQq4v03LmQ8VXuePWe/k2Bd -zXhNhvr8q1MlKCPZa9GrpaU6hG+1JtjtXaMvX66KKC2GtI7CJjRKbKems4x/WMzC -jZK+qWuzEEc3GoRh762LQkGP8UidQn8e9w11oBuXWeT5ul4TXyAXErAP0pmdInVs -J5fbDlhp/Z5zsaSZq76gl7j6k1yMEmPMnLdVdLspPy1OuHac3zur56vST1wDqojt -97jremAawaL4wo96EbeKLhZ+ocj0uk2ssiUpZJSSVUU76vaAhDM36IpJlgBBN97x -WKQ1vrTolvZSs4tCuilSGggWxar6jv4oQkpdexbMn8E2eihbtn8uYZ03pkG8t4Am -WxwhPyXsMx55JSxmR7IDsrDfhykKkRUTt51s2zUjd5lvYBM4FMbEvu4geHvg82o6 -siuzNOyUCgoXbZzEQqha -=zHV1 ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-x86_64-CHECKSUM deleted file mode 100644 index 29e6a6c..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-30-1.2-x86_64-CHECKSUM +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-x86_64-30-1.2.iso: 1934753792 bytes -SHA256 (Fedora-Workstation-Live-x86_64-30-1.2.iso) = a4e2c49368860887f1cc1166b0613232d4d5de6b46f29c9756bc7cfd5e13f39f -# Fedora-Workstation-netinst-x86_64-30-1.2.iso: 625999872 bytes -SHA256 (Fedora-Workstation-netinst-x86_64-30-1.2.iso) = 28c94f90adc926ea035d56f5bf59058a9305566adb70c0c50d7a13fc6ab838cf ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJcw14JAAoJEO88ER/Pxlm5imMP+QHjAr/pWMm3/UobyKNkEDNG -PFBN8dYb+fWTWCMQnnLhIMNS5JenKWDOuTpCPXnbGQSvLaHBS5hLtUs8Vq3s3ejy -aZfQ26uqJi8QxUcJQ+Amq7xixtj1beeP3zLcb8EQvAwd8eod0UCURZ7UwFusEOAa -bBGHOlnEOez8oFXr1uyuzwh2FxTy5gXUYto/RK/cGa20RB6b/oGbbdVMk32X4FN8 -98FIefJBagiYV8xifFCceoPH2Nh9Ct06laD14ZmfLORVivOeaVGqdOJEc9aVWevC -ShWocDWXNQginkyn20hj7wOnJ3PR24Cvz8Uof3a9QW6LfpEOTORIK5Cdm+0V7age -zDLynzepXgI51oHS0rTXExwVR+u8sem/dy3fDZeuugd2UhcG5gb46TIDjdKECYWo -nhDa9YmFhxmEG4k5C7Z5jDz+zwo3E0ywSOgDCUHE0c5rEEZYM0/+0f1JmK/qLdcx -rSQuqBKoiFB39Rtw41X/IT5nDpHFfyexg6qyWl2c9QoHsHUu3Wfo+NuLA8XO17dp -U55ZZuw+BnwavQ99pn/kRScTSmxYIIgFxSPie/3ESdwt18B5QdHVaVTEOn4bkYR8 -Nd+yxjeYQpucmkBmYGiNy11+L9APpR/9oEFkEM400LWS2gxpzD7jxpUg1Wp36E7q -TPiF6Dp68ao9qmjmTCL7 -=SmLq ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-aarch64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-aarch64-CHECKSUM deleted file mode 100644 index 569f303..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-aarch64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-31-1.9.aarch64.raw.xz: 3082763392 bytes -SHA256 (Fedora-Workstation-31-1.9.aarch64.raw.xz) = 62bd7eb64546ad5926930807d4fd3e647486993d50fa53c0123503d4e0d27db0 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQdAAoJEFDLOQs8M1nENAAQAKgtNmCtqoprLn+a194b9EyZ -5vUmC/7se5HoGjLeFZFX4ThYSnt1rd5JB/nheQgY9lDM3DvqaG1jTdvk3Y43BU5f -CwRrDYPiIbKVgF/KqfoHwUVGMaKEqZaX6QwKmZqfBBp8Pp+vn/kp6FjbziYI8PTd -binJx8sknDaYsAsVNCxKwoxHk2uToG9Q51B8ixbuEb7lKVf8gsq4ROMk0w5pNkVi -pF16Y33g4oG4E4XCQg8SA9Q8ea/UbIGuQsyF4NDzofYTa8SfctFy2Ix1v9cWZOQR -DZaIscBm5SYdRLrNPiQj/TOq+7Ai4LcjlNwwnYtP2dbTsS8H0OnAkq5zMFTfOLdU -5dvw70kSyWAEbjViJ67lU3ttXpcVerco7lwaP5nKTOtBpOTR+Xvc/SpXE6hoJ3LD -nVpYqo9Pt0K5ZVmHURQBIllBbedV9mj5wQrTgFSs/u35zzvPFTstScK9qlVrbcRA -kgJDXJ2JBkoFg4HPb2tSIF9xuJHUrIJIKkgRuwQtcbbOKB+I3uuzE3z22ZYN3A9G -HbbHkaYDvzNsoe8I9UpM5bzAIV0KQRaSNl1kYG7/S1kyrm7xeJJ3JTsCmhxI9uk4 -8HfB37YlNUvotu8EuK71HjLobrXkzfFWBseaLnhVPIQ0Mfkfq6VtCNQVy3hNyNhh -G81LxYkFe8qtVUXN25Q9 -=Jtfv ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-armhfp-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-armhfp-CHECKSUM deleted file mode 100644 index 74edf4f..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-armhfp-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-armhfp-31-1.9-sda.raw.xz: 1374274524 bytes -SHA256 (Fedora-Workstation-armhfp-31-1.9-sda.raw.xz) = 054c1f70197d0f3bca3646549e41e81f2177165d5ccc5c6ef9ac82c32f46c1b4 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQaAAoJEFDLOQs8M1nEcSUP/Ao2XOD2ubAxN3MmGHDwqCIm -c6xuQEoyChFD9bCdOsu7m4XaMiE4/NLvdByPWuJbHnPMNOt9X5oa9fECMMvFR+c9 -RHwxsArOH+J7BOs+TWON+uba1swbtJkAt8fZDhw5Pd3P6bNXNxkI7K1t3B62w8Xy -9iU+AwRvQbnYMemB7J0w+Ip/2O62IqsnGJYNpmnupjKmvQ79HkyDDwDWVdqtJlt0 -//z2F3itnhL2BdjM/ZdVdsQZaeh03rt+gozRXiF90Oc/PqwyImllQ/KbI3nHAAdC -YIIl45mW89Yuh95nAPnm8SYH2WSkf3qNjS52yDOGMotv/aG+EjP2DeTpP1U9iCz1 -SeOUca1K0gB3rnUR4vItj4vuPWFBWOhjKGrf2FhwVmvGUr9Fnc/jZ4aFl9D0T84k -aMtagf+X5iGMzbERY9pbOD4Tga6+hteJxK8xLjqtfQGUqcsEmS4pxkx0EPRM3RUL -UF5ig4KHsVA4uoAMtu/VPo/SNmyRmbzb+xfnZpXqcsgC1ogo6837yJgXoEvCC/ru -R5A4Q0ztAu2vZrt4X+7PlVM1tH8nYzUogWL/pVYOHzE77dAgMCcObulR+aLiUWn7 -hbGo0uIpJDe0WoGuUPKfemWfr3PD2FZUYo8BsxsEg7nXZkGz0jx10hBBC8Efex1R -mrekjXP5o+lpnBMnsTpd -=pJZk ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-x86_64-CHECKSUM b/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-x86_64-CHECKSUM deleted file mode 100644 index 617a527..0000000 --- a/getfedora.org/static/checksums/Fedora-Workstation-31-1.9-x86_64-CHECKSUM +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -# Fedora-Workstation-Live-x86_64-31-1.9.iso: 1929379840 bytes -SHA256 (Fedora-Workstation-Live-x86_64-31-1.9.iso) = 1d73ce30bfb96274c53b09013ea23320f0f64a1b0c663217110a5baf0b2c6528 ------BEGIN PGP SIGNATURE----- - -iQIcBAEBCAAGBQJdsvQcAAoJEFDLOQs8M1nECV0P/REZqCB4cMQtvDlW/NDslQKq -edW5ky3pjGyKQHk9LR4WF69y8pxJPMYgQCa9mfGjAyQVG3aXRwtevv7UFX7/ZLti -9ptUUIC2U/BvqOjvM9fh47yYBV1B0ispvSN0r+j6k7L2R7AdvfH73oV40soOOMNf -6XWs8g2UTWNtQoNaAax2nwkID1mA6SSCQxH7MeL1TLTTAo8ezYTrzI5vzr/YmJyN -cA3UweE7bOtiN9GadZ5BQi+0iN1ugQvo31MDHSSXQjct1H9vtSGMcFhwkdRY4gPl -zDHGkyiNNM3aXj2MLvHe7KyN6z6GpKQwxuOqTSq1FY/yfnwSS+gzRV09ibE44Fzp -2MjbVgd6RboD4h2NAFdc6abrJrqu+IkdF9kn9GB9Lg9BLcvdaDhfaBI8yuWmPTgI -c/J7SkzUO+FMfpnbctmyojbN4XclVq0IuCoMPXyR9L8BiV3JsdbBmt45d4Kbu4oV -iqcdZj3wUEkiAyg7lU0Mg6ENPD4yRim7fvwTItXphvZ9lv39NQJUIj0mNTLP180g -7yMsofZYIWwZe1Ajh7/HtflqEdToOAw8e5xJh3v93EL9C7P2WJ/WT4NDxfxCVG/2 -YQRsFQ+GTuvjT/aJL0IeFuZqSaROLOqzyHNEAWMu8RkoHC3/XrHl2NqOx+DdJx6X -sbNQR8y8L8l+FKbSinkD -=+Lac ------END PGP SIGNATURE----- diff --git a/getfedora.org/static/css/app.css b/getfedora.org/static/css/app.css deleted file mode 100644 index d91d053..0000000 --- a/getfedora.org/static/css/app.css +++ /dev/null @@ -1,1343 +0,0 @@ - - -@media (max-width:530px) -{ - .mymenu .navbar-header { - float: none; - } - .mymenu .navbar-left,.navbar-right { - float: none !important; - } - .mymenu .navbar-toggle { - display: block; - } - .mymenu .navbar-collapse { - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); - } - .mymenu .navbar-fixed-top { - top: 0; - border-width: 0 0 1px; - } - .mymenu .navbar-collapse.collapse { - display: none!important; - } - .mymenu .navbar-nav { - float: none!important; - margin-top: 7.5px; - } - .mymenu .navbar-nav>li { - float: none; - } - .mymenu .navbar-nav>li>a { - padding-top: 10px; - padding-bottom: 10px; - } - .mymenu .collapse.in{ - display:block !important; - } - -} -/*bootstrap xs*/ -@media (min-width:530px) and (max-width:767px) -{ - .mymenu .navbar-collapse ul - { - padding-bottom:0px; - } - - .mymenu .navbar-toggle { - display: none!important; - } - .mymenu .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .mymenu .collapse - { - display:block; - height:100%!important; - } - - .mymenu .nav-tabs.nav-justified > li > a{ - margin-bottom:0px; - border-radius:0px; - } - - .downloadheader .container - { - background-size:260px; - } - - .downloadheader .container h2 - { - font-size: 20px; - } - -} - -/*bootstrap sm*/ -@media(min-width:768px) -{ -} - -/*bootstrap md*/ -@media(min-width:992px) -{ - .downloadheader .container - { - min-height:200px; - } -} - -/*bootstrap lg*/ -@media(min-width:1200px) -{ -} -body -{ -background-color:#E6E6E6; -} - -#site-content -{ -background-color:white; -} -/* Navbar */ -.navbar { border: 0px none; } - -/* Navbar Cloud */ -.navbar-custom { - background-color:#60605b; - border-radius: 0px; -} - -#cloud .navbar-default .navbar-nav > li > a { - color:#fff; - font-size: 16px; -} - -#cloud .navbar-default .navbar-nav > li > a.active { - color:#fff; - font-size: 16px; - font-weight: bolder; - background-color: #A07CBC; -} - -#cloud .navbar-nav li a { - line-height: 45px; - height: 45px; - padding-top: 0; -} - -#cloud .navbar { - height: 45px; -} - -/* Modal boxes */ -.modal { overflow-y: auto; } -.modal-cloud { width: 550px; } - -/* Custom buttons */ -.btn-cloud { - color: #FFEFD7; - background-image: -webkit-linear-gradient(top, #914EBB 0%, #9E61B7 100%); - background-image: linear-gradient(to bottom, #914EBB 0%, #9E61B7 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff914EBB', endColorstr='#ffA77CC6', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border:0 none; -} - -.btn-cloud:hover, -.btn-cloud:focus { - color: #FFFFFF; - background: #7C59BB; -} -.btn-cloud:active { background: #7C6ADD; } - -.btn-checksum { - width: 250px; - margin-left: auto; - margin-right: auto; -} - -.btn-verify { - padding: 10px; -} - -.btn-fix { - width: 250px; -} - -/* Product Front Pages (General Classes) */ - -.product-testimonial, .header-splash, .product-features -{ - padding-bottom: 36px; - color: white; -} - -.product-definition -{ - background-color:#e7e8e9; - color: #294172; - font-size: large; - font-weight: 500 !important; -} - -.product-testimonial blockquote { - text-align: left; - color: black; - font-size: 180%; - border-left: none; - font-style: normal; -} - -.product-testimonial blockquote cite { - color: #777; - font-weight: 300; -} - -.bluebox -{ - background-color: #3c6eb4; - color: #f8f8f8; -} - -.sponsorbox -{ - background:-webkit-gradient(radial, 30% 30%, 0, 30% 30%, 900, from(#A07CBC), to(#755B8A)) #A07CBC; - background-image: -webkit-radial-gradient(30% 30% 45deg, circle farthest-side, #a07cbc, #755B8A); - background-image: -moz-radial-gradient(30% 30% 45deg, circle farthest-side, #a07cbc, #755B8A); - background-image: -o-radial-gradient(30% 30% 45deg, circle farthest-side, #a07cbc, #755B8A); - background-image: -ms-radial-gradient(30% 30% 45deg, circle farthest-side, #a07cbc, #755B8A); - background-image: radial-gradient(30% 30% 45deg, circle farthest-side, #a07cbc, #755B8A); - color: #f8f8f8; -} - -.product-feature { - font-size: large; -} - -.productlogo -{ - margin-top:5px; - height: 3.5em; -} - -.download-lower { - background: #3c6eb4; - text-align: center; - color: white; -} - -.download-lower h3 { - margin-top: 14px; -} - -.download-lower .btn { - color: white; - margin-left: 4em; -} - -.download-lower .btn-visible-xs { - margin: 0px; -} - -/*bottom products selector*/ - -.moretofedora -{ - background-color:white; -} - -.moretofedora .inlinelogo -{ -padding-left:2px; -padding-bottom:10px; -height:50px; -margin-top:4px; -} - -.product-selector { - color: #333; -} - -.bottom-products -{ - background-color:white; -} - -.bottom-products .productname -{ - font-family: "Montserrat"; - text-align: center; -} - -.newsbox { - background-color: #a07cbc; - color: #fff; - padding: 20px; -} - -.newsbox h2, -.newsbox h3 { - margin-top: 22px; - color: rgba(255,255,255,0.7); -} - -.newsbox .index h3 { - margin-top: 10px; - color: #fff; -} - -.newsbox a{ - color: rgba(255,255,255,1); - border-bottom: 1px dotted rgba(255,255,255,0.4); -} - -.newsbox a:hover, -.newsbox a:active { - text-decoration: none; - color: rgba(255,255,255,0.7); -} - -.newsbox a.news, -.newsbox a.news, -.newsbox a.news { - text-decoration: none; - border: none; -} - - -.product-box { - position: relative; - margin-left: auto; - margin-right: auto; -} -.product-box a { - background-image: url("../images/product-sprite.png"); -} - -.product-box .greyscale, -.product-box .color -{ - left:0; - width: 100%; - height: 100%; - position:absolute; - background-size: 70px 70px; -} - -.product-box .product-server, -.product-box .product-workstation, -.product-box .product-atomic -{ - margin: 20px auto; - display: block; - position:relative; - width:70px; - height: 70px; - -} - -.product-box .product-server .greyscale -{ - background-image:url(../images/smalllogo-grey-server.png); -} - -.product-box .product-server .color -{ - background-image:url(../images/smalllogo-color-server.png); -} - -.product-box .product-workstation .greyscale -{ - background-image:url(../images/smalllogo-grey-workstation.png); -} - -.product-box .product-workstation .color -{ - background-image:url(../images/smalllogo-color-workstation.png); -} - -.product-box .product-atomic .greyscale -{ - background-image:url(../images/smalllogo-grey-atomic.png); -} - -.product-box .product-atomic .color -{ - background-image:url(../images/smalllogo-color-atomic.png); -} - -.product-box .product-server .greyscale, -.product-box .product-server:hover .color, -.product-box .product-workstation .greyscale, -.product-box .product-workstation:hover .color, -.product-box .product-atomic .greyscale, -.product-box .product-atomic:hover .color -{ - opacity:1; - transition: opacity 0.3s ease; -} - -.product-box .product-server .color, -.product-box .product-workstation .color, -.product-box .product-atomic .color -{ - opacity:0; - transition: opacity 0.3s ease; -} - -.product-box .product-server:hover .greyscale, -.product-box .product-workstation:hover .greyscale, -.product-box .product-atomic:hover .greyscale -{ - opacity:0; -} - -/*End Bottom products selector*/ - - -/* Download */ - -#workstation .downloadheader .btn, -#workstation .download-lower .btn { - background-color: #7bcf3e; -} - -#workstation .splashheader { - background-color: #ccc; - min-height: 116px; -} - -#cloud .download-cloud-splash.btn { - background-color: #a07cbc; -} - -#cloud .download-cloud { - background-color: #a07cbc; -} - -/*Nav*/ - -.mymenu -{ - background-color:#b2b4b5; - box-shadow:0px 30px 30px -15px #aaa inset, 0px -1px 0px 0px #aaa inset; -} - -.mymenu .nav-tabs.nav-justified > li > a, -.mymenu .nav-tabs.nav-justified > li > a:hover -{ - border:none; - background-color:transparent; -} -.mymenu .nav-tabs.nav-justified > li > a -{ - color:#fff; - font-weight:bold; - text-shadow: 1px 1px 1px #777; -} - -.mymenu .nav-tabs.nav-justified > .active > a, -.mymenu .nav-tabs.nav-justified > .active:hover > a -{ - background-color:transparent; - color:#111; - text-shadow: none; -} -.mymenu.workstationmenu .nav-tabs.nav-justified > .active > a, -.mymenu.workstationmenu .nav-tabs.nav-justified > .active:hover > a -{ - box-shadow: 0px -3px 0px 0px rgb(121,219,50) inset; -} - -.mymenu.servermenu .nav-tabs.nav-justified > .active > a, -.mymenu.servermenu .nav-tabs.nav-justified > .active:hover > a -{ - box-shadow: 0px -3px 0px 0px rgb(229,151,40) inset; -} - -.mymenu .nav-tabs.nav-justified > li:hover > a -{ - background-color:transparent; - box-shadow: 0px -3px 0px 0px #555 inset; - text-shadow: none; - text-shadow: 1px 1px 1px #bbb; - color:#555; -} - - -.downloadheader .container -{ - background-image: url(../images/downloadicon.svg); - background-repeat: no-repeat; - background-position: 50px center; -} - -/* Header */ -#head { text-align: center; font-family:"Open sans", Helvetica, Arial; font-weight:300; } -#head h1 { font-size: 36px; margin-bottom: 42px; } -#head.secondary { height:100px; min-height: 100px; padding-top:0px; } - #head .lead { font-family:"Open sans", Helvetica, Arial; font-size:24px; color:white; line-height:1.15em; } - #head .tagline { color:rgba(255,255,255,0.75); margin-bottom:25px; font-size: 16px;} - #head .tagline a { color:#fff; } - #head .btn { margin-bottom:10px;} - #head .btn-default { text-shadow: none; background:transparent; color:rgba(255,255,255,.5); -webkit-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.5); -moz-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.5); box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.5); background: transparent; } - #head .btn-default:hover, - #head .btn-default:focus { color:rgba(255,255,255,.8); -webkit-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.8); -moz-box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.8); box-shadow:inset 0px 0px 0px 3px rgba(255,255,255,.8); background: transparent; } - #head .btn-default:active, - #head .btn-default.active { color:#fff; -webkit-box-shadow:inset 0px 0px 0px 3px #fff; -moz-box-shadow:inset 0px 0px 0px 3px #fff; box-shadow:inset 0px 0px 0px 3px #fff; background: transparent; } - #head .btn-edition, - #head .btn-edition:hover, - #head .btn-edition:focus, - #head .btn-edition:active, - #head .btn-edition.active a { background-color: #294172; color: #fff; text-decoration: none; border-radius: 20px;} - -.downloadheader -{ - background: url(../images/greybg.png) no-repeat right 0px center; - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; - box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.05) inset; -} - -.main-head -{ - background: url(../images/greybg.png) no-repeat right 0px center; - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; - box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.05) inset; - padding-top: 20px; - padding-bottom: 20px; -} - -.main-head-index -{ - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; - box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.05) inset; - padding-top: 90px; - padding-bottom: 100px; - background: rgba(0, 0, 0, 0) radial-gradient(ellipse at 50% 50% , #294172 15%, #233862 70%) repeat scroll 0 0; - text-align: center; -} - -.main-head-index h1 -{ - font-family:'Montserrat'; - font-size: 52px; - text-align: center; - margin-bottom: 40px; -} - -.main-head-index h4 -{ - font-family:'Open Sans'; - font-size: 22px; - text-align: center; - line-height: .8; -} - -.main-head-index h1, .main-head-index h4 -{ - color: #fff; -} - -.blue-pattern-box { - background: url(../images/blue-pattern.png) no-repeat right 0px center; - height: 70px; - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; -} - -.grey-pattern-box { - background: url(../images/grey-pattern.png) no-repeat right 0px center; - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; -} - -.docslink a { - color: #777; -} - -.fedora-header h2 { - line-height: 50px; - font-size: 18pt; -} -.product-header, .fedora-header{ - padding: 20px 20px; -} - -.fedoralogotext -{ - height:49px; - width: 108px; - max-width: 108px; -} - -.fedoralogo -{ - height: 3.5em; -} -.logo-header{ - margin-top: 19px; -} -.inline-logo { - margin-top: -14px; - padding-bottom: 10px; - padding-left: 2px; -} -.language-header { - margin-top: 43px; -} -.btn-topmargin { - margin-top: 10px; -} -.verticalbottom { - vertical-align: bottom; !important; -} -.down { - margin-bottom: -4px; -} - -/* Highlights (in jumbotron in most cases) */ -.highlight { margin-top:40px; } - .h-caption { text-align: center; } - .h-caption img { display:block; font-size: 54px; color:#382526; margin-bottom:36px; } - .h-caption h4 { color:#382526; font-size: 16px; font-weight: bold; margin-bottom:20px; } - .h-body { margin-left: 50px; margin-right: 50px; margin-bottom: 20px; } - .h-body h4 { line-height: 1.5; } - -.productitem h4 -{ -font-family:'Montserrat'; -text-align:center; -} - -.productitem .productitem-logo -{ - - width:230px; - height:230px; - display:block; - margin-left:auto; - margin-right:auto; -} -.productitem > a -{ - color:#444; -} - -.productitem > a:hover -{ - text-decoration:none; -} - -.productitem .color, -.productitem .greyscale -{ - width:230px; - height:230px; - background-size:cover; - position:absolute; -} - -.productitem.workstation .color -{ - background-image:url(../images/workstation-logo-main.png); -} - -.productitem.server .color -{ - background-image:url(../images/server-logo-main.png); -} -.productitem.cloud .color -{ - background-image:url(../images/atomic-logo-main.png); -} - -.productitem.workstation .greyscale -{ - background-image:url(../images/logo-grey-workstation.png); -} - -.productitem.cloud .greyscale -{ - background-image:url(../images/logo-grey-cloud.png); -} - -.productitem.server .greyscale -{ - background-image:url(../images/logo-grey-server.png); - opacity:1; -} - -/* Editions logo and download button in main index */ - -.product-logo-row { - background: red; -} - -.edition-logo { - width: 200px; - position: absolute; - height: auto; - left: 0; - right: 0; - margin: auto; - padding-top: 1em; - padding-bottom: 1em; -} - -.edition-logo a + a { - color: white; - border: 1px solid white; - padding: 5px; - display: none; -} - -.productitem { - text-align: center; - padding-top: 2em; - padding-bottom: 5em; - min-height: 290px !important; -} - -.productitem img { - height: 150px !important; - width: 150px !important; - position: relative; -} - -.productitem h3 { - color: white; - font-family: 'Montserrat', sans-serif; - text-transform: uppercase; - margin-bottom: 1em; -} - -.productitem a { - display: block; - font-weight: bolder; -} - -.productitem a, .productitem a:hover { - text-decoration: none; -} - -.productitem.workstation { - background-image: url("../images/ws-main.png") -} - -.productitem.server { - background-image: url("../images/server-main.png") -} - -.productitem.atomic { - background-image: url("../images/atomic-main.png") -} - -.productdesc { - background-color: none !important; - padding: 0; - text-align: center; -} - -.productdesc h4 { - font-weight: bolder; - color: #60605b; - padding: 0 60px; - margin-top: 0; - margin-bottom: 30px; - line-height: 1.5; -} - -/* bootstrap sm */ -@media (min-width:768px) and (max-width:991px) { - .productdesc h4 { - padding: 0; - } -} - -/* bootstrap md */ -@media (min-width:992px) and (max-width:1199px) { - .productdesc h4 { - padding: 0 30px; - } -} - -.productdesc-spacer hr { - color: #3c6eb4; - background-color: #3c6eb4; - width: 80px; - height: 4px !important; - text-align: center; - border: 0; - margin-top: 50px; - margin-bottom: 50px; -} - -/* end */ - -@media -(-webkit-min-device-pixel-ratio: 2), -(min-resolution: 192dpi) { -.productitem.workstation .greyscale -{ - background-image:url(../images/logo-grey-workstation@2x.png); -} - -.productitem.cloud .greyscale -{ - background-image:url(../images/logo-grey-cloud@2x.png); -} - -.productitem.server .greyscale -{ - background-image:url(../images/logo-grey-server@2x.png); -} -} - -.community { - background-image: url('../images/community.jpg'); - color: #FFF; - text-shadow: 0em 0em 1em #000; - padding-top: 10%; - padding-bottom: 10%; - background-position: 50% 50%; - background-size: cover; - background-repeat: no-repeat; -} - -.foundations { - height: 150px; - width: 150px; - margin-top: 40px; - margin-bottom: 30px; -} - -.spinsbar { - margin: 5px; -} - -/* Workstation */ -#workstation .header-splash { - background: #3c6eb4 url(../images/workstation/workstation-splash.jpg) no-repeat right 0px center; -} - -#workstation .product-testimonial -{ - background: white url(../images/workstation/workstation-testimonial.jpg) no-repeat left top -45px / 80%; -} - -#workstation .product-testimonial blockquote p { - color: #555 !important; -} - -#workstation .product-testimonial blockquote cite { - color: #777 !important; -} - -#workstation .screenshots:last-child -{ - border-bottom: 15px solid #7bcf3e; -} - -#workstation .gnome3 { - background-size: cover; - background: #777 url(../images/workstation/workstation-pattern.png);} - -#workstation .copr { - background: #777 url(../images/workstation/workstation-features-user.jpg) no-repeat 50% 50% scroll; - background-size: cover; - color: white; - text-shadow: #777 1px 1px 1px; - position:relative; -} -/*overlay to cover a background image to grey it out a bit to make the text more -readable*/ -.background-overlay -{ - width:100%; - height:100%; - position:absolute; - background-color:rgba(0,0,0,0.6); - top:0; - left:0; -} - -#workstation .boxes { - background-size: cover; - background: #777 url(../images/darktriangles.png); - color: white; -} - -#workstation .product-definition { - border-bottom: 15px solid #7bcf3e; -} - - -/* Server */ -#server .header-splash { - background: black url(../images/server/server-splash.jpg) no-repeat center top 0px; - background-size: cover; - border-bottom: 10px solid #e59728; -} - -#server .header-splash p { - font-size: 1.4em; -} - -#server .header-splash h1 { - margin-bottom: 12px; -} - -#server .downloadheader .btn, -#server .header-splash .btn-success, -#server .download-lower .btn, -#server .modularity .btn-success { - background-color: #e59728; -} - -#server .product-definition { - background: white url(../images/server/server-pattern.2.png); - border-bottom: 10px solid #e59728; - color: black; -} - -#server .modularity { - background: #143c79 url(../images/server/server-pattern.3.png); - color: white; - border-bottom: 10px solid #e59728; -} - -#server .modularity img { - max-width: 300px; - margin-left: auto; - margin-right: auto; - margin-top: 30px; - display: block; -} - -#server .two-col { - background: white url(../images/server/server-splash.2.jpg) no-repeat center center; - background-size: cover; - color: white; - border-bottom: 10px solid #e59728; - } - -#server .cockpit { - background-size: cover; - background: white url(../images/server/server-features-cockpit-bg.png) no-repeat top center / 100%; - border-bottom: 10px solid #e59728; -} - -#server .freeipa { - background-size: cover; - background: white url(../images/server/server-features-freeipa-bg.png) no-repeat top center / 100%; - border-bottom: 10px solid #e59728; -} - -/*Cloud*/ - -#cloud #head -{ - background-image: url(../images/atomic/atomic-splash.jpg); - background-repeat: repeat-x; - background-position: 50% auto; - padding-top:40px; - padding-bottom:40px; - color: white; -} - -#cloud #head h1 -{ - margin-bottom: 10px; -} - -#cloud #head .btn -{ -background-color:#A07CBC; -margin-top:20px; -} - -#cloud .caption, .atomic-cli, .atomic-ostree { - font-size: 125%; - text-shadow: 1px 1px 5px #fff; -} - -#cloud .atomic-ostree { - background-image: url(../images/atomic/atomic-ostree.png); - background-position: center center; - min-height: 350px; -} - -#cloud .atomic-cli { - background-image: url(../images/atomic/atomic-cli.png); - min-height: 350px; - background-color: #9e8eac; - background-repeat: no-repeat !important; - background-position: left !important; - color: white; - text-shadow: 1px 1px 1px #555; -} - -#cloud .download-lower .btn -{ - background-color:#A07CBC; -} - -#cloud .btn-tab { - padding: 3px 5px; - height: 28px; - width: 100px; - border: #A07CBC 1px solid; - border-radius: 8px; - color: #A07CBC; -} - -#cloud .btn-tab-active { - padding: 3px 5px; - height: 28px; - width: 100px; - border-radius: 8px; - color: #fff; - background-color: #c7addc; -} - -#cloud .btn-tab:hover, -#cloud .btn-tab-active:hover { - background-color: #A07CBC; - color: #fff; -} - -#cloud .product-testimonial { - background-size: cover; - border-bottom: 15px solid #A07CBC; -} - -#cloud .atomic-host { - background-image: url(../images/atomic/cloud-pattern.png); -} - -#cloud .minimalfastflexible { - background-image: url(../images/greybg.png); -} - -#cloud .download-container .caption { - color: #777; - font-size: 90%; - margin-top: .5em; -} - -#cloud .downloadheader a, -#cloud h5.bold, -#cloud h4.bold, -#cloud p.bold a { - - font-weight: bold; -} - -#cloud .download-container .btn { -} - -#cloud .download-container h2.cloudy { - color: #A07CBC; -} - -#cloud .validate { - width: 210px; -} - -#cloud .click { - display: block; - margin-top: 1.5em; - font-weight: bold; - font-size: 110%; -} - -#cloud .reveal { - margin: 1.5em; - padding: 1em 1.5em; - background: #eee; -} - -#cloud .img-circle { - margin-top: 40px; -} - -/*Pre-release page */ -.prerelease-header { - width: 500px; - margin: 50px auto 0 auto; -} - -p.warning { - padding: .7em 1em; - color: #fff; - background: #4c4c4c no-repeat 10px center; - margin-bottom: 2.5em; - font-size: 110%; - display: none; - text-align: justify; -} - -p.warning a { - color: #fff; - font-weight: 600; -} - -.prerelease-box { - background-color: #fbfbfb; - padding: 0px 10px 10px 10px; -} - -.prerelease-box h4 { - color: #3c6eb4; - font-weight: bold; - text-transform: uppercase; - margin-top: 13px; -} - -.prerelease-box h5 { - display: inline; - position: relative; - padding: 0px 8px; - color: #fff; - font-weight: bold; - text-transform: uppercase; - background-color: #a7a9ac; - margin-top: -20px; - margin-left: 10px; -} - -.header-icon { - margin-right: 5px; -} - -/*bootstrap xs*/ -@media max-width:767px -{ - -} - -/*bootstrap sm*/ -@media(min-width:768px) { - #cloud .minimalfastflexible .screenshot { - margin-top:40px; - } - #cloud .navbar-nav { - display: inline-block; - float: none; - vertical-align: top; - } - #cloud .navbar-collapse { - text-align: center; - } -} - -/*bootstrap md*/ -@media(min-width:992px) -{ -#cloud .minimalfastflexible .screenshot - { - margin-top:0px; - } -} - -/*bootstrap lg*/ -@media(min-width:1200px) -{ -} - - - -/* Typography */ -h1, h2, h3, h4, h5, h6 { font-family:"Open sans", Helvetica, Arial; } -h1, .h1, h2, .h2, h3, .h3 { margin-top:30px; } -h1.nopad, h2.nopad, h3.nopad { margin: 0 !important; padding: 0 !important; } /* Sometimes we don't want extra space. */ -blockquote { font-style: italic; color:#999; margin:30px 0 30px; } -label { color: #777; } -.thin { font-weight:300; } -.page-title { margin-top:20px; font-weight:300; } -.text-muted { color:#888; } -.breadcrumb { background:none; padding:0; margin:30px 0 0px 0; } -ul.list-spaces li{ margin-bottom:10px; } - -/* Helpers */ -.container-full { margin: 0 auto; width: 100%; } -.jumbotron-full { padding: 0;} -.top-space { margin-top: 60px; } -.top-margin { margin-top:20px; } -.bottom-space { margin-bottom: 60px; } -.bottom-margin { margin-bottom:20px; } -.bottom-margin h4 { line-height: 1.5; } -.bottom-step { margin-bottom:10px; } -.bottom-margin-edition { margin-bottom:40px; } -.recover-heading { padding-bottom: 30px; } /* Recover the margin added by h1-h3 for even-ness. */ -.uppercase {text-transform: uppercase;} -.liveusb {} -.pull-right {margin-left: 10px;} -.fingerprint {white-space: pre;} - -img { max-width:100%; } -img.pull-right { margin-left: 10px; } -img.pull-left { margin-right: 10px; } -#map { width:100%; height:280px; } -#social { margin-top:50px; margin-bottom:50px; } - #social .wrapper { width:340px; margin:0 auto; } - -/* Main content block */ -.maincontent { } - -/* Footer */ -.foot { background-color:#e6e6e6; padding: 30px 0 0 0; font-size: 13px; color: #777; } - .foot a { color: #333; } - .foot a:hover {color: #000; } - .foot .widget { margin-bottom:30px; } - .foot .widget-title { font-size: 17px; font-weight: bold; color: #8d8d8d; margin: 0 0 20px; text-transform: uppercase; } - .foot .entry-meta { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; margin: 0 0 35px 0; padding: 2px 0; color: #888888; font-size: 12px; font-size: 0.75rem; } - .foot .entry-meta a { color: #333333; } - .foot .entry-meta .meta-in { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 10px 0; } - .follow-me-icons { font-size:30px; } - .follow-me-icons i { float:left; margin:0 10px 0 0; } - .foot dd { - line-height: 1.6; - } - - .foot .btn-social { - display: inline-block; - width: 30px; - height: 30px; - border: 2px solid #808080; - background-color: #808080 !important; - border-radius: 100%; - text-align: center; - font-size: 18px; - line-height: 25px; -} -.foot .btn-outline { - font-size: 18px; - color: #fff; - background: 0 0; - transition: all .3s ease-in-out; -} - -.foot .btn-outline:hover, -.foot .btn-outline:focus, -.foot .btn-outline:active, -.foot .btn-outline.active { - border: solid 2px #000; - color: #000; - background-color: #fff !important; -} - -.foot dl { - margin-bottom: 8px; -} - -/* special classes for small screens */ - -@media (max-width: 767px) { - #workstation .header-splash, .container, - #workstation .product-testimonial, .container { - background-image: none; - } - #head .lead { font-size: 34px; - } - .modal-cloud { width: 300px; } -} -/* end small screens classes */ - -/* FMW */ - -#fmw .jumbotron h3 { - margin-top: 5px; -} - -#fmw .download { - height: 125px; -} - -#fmw .download .btn { - margin-top: 35px; - background-color: #7BCF3E; -} - -#fmw .btn-success { - background-color: #7BCF3E; -} - -#fmw .linux .btn { - background-color: #7BCF3E; -} - -#fmw .jumbotron { - padding-top: 10px; -} - -#fmw .fedora { - padding-left: 10px; - padding-right: 10px; - padding-bottom: 5px; - margin-bottom: 5px; -} - -#fmw .linux { - padding-left: 10px; - padding-right: 10px; - padding-bottom: 5px; -} - -@media (max-width:530px) -{ - #fmw .jumbotron { - padding-top: 10px; - margin-top: 20px; - } - #fmw .download { - margin-top: 0px; - } - #fmw .linux { - margin-top: 5px; - } -} - -@media (max-width: 1380px) { - .main-head-index h1 { - font-size: 44px; - } -} - -/* Utility classes */ -.hidden { display: none; } - -.mb-0{ - margin-bottom:0; -} - -.mt-1{ - margin-top:1em; -} - -.bg-light{ - background: #f6f6f6; -} - -.download-cloud-sm.download-cloud{ - padding:0.5em 1em; -} diff --git a/getfedora.org/static/css/bootstrap-rtl.css b/getfedora.org/static/css/bootstrap-rtl.css deleted file mode 100644 index 0319db5..0000000 --- a/getfedora.org/static/css/bootstrap-rtl.css +++ /dev/null @@ -1,1446 +0,0 @@ -/******************************************************************************* - * bootstrap-rtl (Version 3.2.0-rc7) - * Author: Morteza Ansarinia (http://github.com/morteza) - * Created on: November 11,2014 - * Project: bootstrap-rtl - * Copyright: No license. - *******************************************************************************/ - -html { - direction: rtl; -} -body { - direction: rtl; -} -.list-unstyled { - padding-right: 0; - padding-left: initial; -} -.list-inline { - padding-right: 0; - padding-left: initial; - margin-right: -5px; - margin-left: 0; -} -dd { - margin-right: 0; - margin-left: initial; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: right; - clear: right; - text-align: left; - } - .dl-horizontal dd { - margin-right: 180px; - margin-left: 0; - } -} -blockquote { - border-right: 5px solid #eeeeee; - border-left: 0; -} -.blockquote-reverse, -blockquote.pull-left { - padding-left: 15px; - padding-right: 0; - border-left: 5px solid #eeeeee; - border-right: 0; - text-align: left; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: right; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - left: 100%; - right: auto; -} -.col-xs-pull-11 { - left: 91.66666667%; - right: auto; -} -.col-xs-pull-10 { - left: 83.33333333%; - right: auto; -} -.col-xs-pull-9 { - left: 75%; - right: auto; -} -.col-xs-pull-8 { - left: 66.66666667%; - right: auto; -} -.col-xs-pull-7 { - left: 58.33333333%; - right: auto; -} -.col-xs-pull-6 { - left: 50%; - right: auto; -} -.col-xs-pull-5 { - left: 41.66666667%; - right: auto; -} -.col-xs-pull-4 { - left: 33.33333333%; - right: auto; -} -.col-xs-pull-3 { - left: 25%; - right: auto; -} -.col-xs-pull-2 { - left: 16.66666667%; - right: auto; -} -.col-xs-pull-1 { - left: 8.33333333%; - right: auto; -} -.col-xs-pull-0 { - left: auto; - right: auto; -} -.col-xs-push-12 { - right: 100%; - left: 0; -} -.col-xs-push-11 { - right: 91.66666667%; - left: 0; -} -.col-xs-push-10 { - right: 83.33333333%; - left: 0; -} -.col-xs-push-9 { - right: 75%; - left: 0; -} -.col-xs-push-8 { - right: 66.66666667%; - left: 0; -} -.col-xs-push-7 { - right: 58.33333333%; - left: 0; -} -.col-xs-push-6 { - right: 50%; - left: 0; -} -.col-xs-push-5 { - right: 41.66666667%; - left: 0; -} -.col-xs-push-4 { - right: 33.33333333%; - left: 0; -} -.col-xs-push-3 { - right: 25%; - left: 0; -} -.col-xs-push-2 { - right: 16.66666667%; - left: 0; -} -.col-xs-push-1 { - right: 8.33333333%; - left: 0; -} -.col-xs-push-0 { - right: auto; - left: 0; -} -.col-xs-offset-12 { - margin-right: 100%; - margin-left: 0; -} -.col-xs-offset-11 { - margin-right: 91.66666667%; - margin-left: 0; -} -.col-xs-offset-10 { - margin-right: 83.33333333%; - margin-left: 0; -} -.col-xs-offset-9 { - margin-right: 75%; - margin-left: 0; -} -.col-xs-offset-8 { - margin-right: 66.66666667%; - margin-left: 0; -} -.col-xs-offset-7 { - margin-right: 58.33333333%; - margin-left: 0; -} -.col-xs-offset-6 { - margin-right: 50%; - margin-left: 0; -} -.col-xs-offset-5 { - margin-right: 41.66666667%; - margin-left: 0; -} -.col-xs-offset-4 { - margin-right: 33.33333333%; - margin-left: 0; -} -.col-xs-offset-3 { - margin-right: 25%; - margin-left: 0; -} -.col-xs-offset-2 { - margin-right: 16.66666667%; - margin-left: 0; -} -.col-xs-offset-1 { - margin-right: 8.33333333%; - margin-left: 0; -} -.col-xs-offset-0 { - margin-right: 0%; - margin-left: 0; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: right; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - left: 100%; - right: auto; - } - .col-sm-pull-11 { - left: 91.66666667%; - right: auto; - } - .col-sm-pull-10 { - left: 83.33333333%; - right: auto; - } - .col-sm-pull-9 { - left: 75%; - right: auto; - } - .col-sm-pull-8 { - left: 66.66666667%; - right: auto; - } - .col-sm-pull-7 { - left: 58.33333333%; - right: auto; - } - .col-sm-pull-6 { - left: 50%; - right: auto; - } - .col-sm-pull-5 { - left: 41.66666667%; - right: auto; - } - .col-sm-pull-4 { - left: 33.33333333%; - right: auto; - } - .col-sm-pull-3 { - left: 25%; - right: auto; - } - .col-sm-pull-2 { - left: 16.66666667%; - right: auto; - } - .col-sm-pull-1 { - left: 8.33333333%; - right: auto; - } - .col-sm-pull-0 { - left: auto; - right: auto; - } - .col-sm-push-12 { - right: 100%; - left: 0; - } - .col-sm-push-11 { - right: 91.66666667%; - left: 0; - } - .col-sm-push-10 { - right: 83.33333333%; - left: 0; - } - .col-sm-push-9 { - right: 75%; - left: 0; - } - .col-sm-push-8 { - right: 66.66666667%; - left: 0; - } - .col-sm-push-7 { - right: 58.33333333%; - left: 0; - } - .col-sm-push-6 { - right: 50%; - left: 0; - } - .col-sm-push-5 { - right: 41.66666667%; - left: 0; - } - .col-sm-push-4 { - right: 33.33333333%; - left: 0; - } - .col-sm-push-3 { - right: 25%; - left: 0; - } - .col-sm-push-2 { - right: 16.66666667%; - left: 0; - } - .col-sm-push-1 { - right: 8.33333333%; - left: 0; - } - .col-sm-push-0 { - right: auto; - left: 0; - } - .col-sm-offset-12 { - margin-right: 100%; - margin-left: 0; - } - .col-sm-offset-11 { - margin-right: 91.66666667%; - margin-left: 0; - } - .col-sm-offset-10 { - margin-right: 83.33333333%; - margin-left: 0; - } - .col-sm-offset-9 { - margin-right: 75%; - margin-left: 0; - } - .col-sm-offset-8 { - margin-right: 66.66666667%; - margin-left: 0; - } - .col-sm-offset-7 { - margin-right: 58.33333333%; - margin-left: 0; - } - .col-sm-offset-6 { - margin-right: 50%; - margin-left: 0; - } - .col-sm-offset-5 { - margin-right: 41.66666667%; - margin-left: 0; - } - .col-sm-offset-4 { - margin-right: 33.33333333%; - margin-left: 0; - } - .col-sm-offset-3 { - margin-right: 25%; - margin-left: 0; - } - .col-sm-offset-2 { - margin-right: 16.66666667%; - margin-left: 0; - } - .col-sm-offset-1 { - margin-right: 8.33333333%; - margin-left: 0; - } - .col-sm-offset-0 { - margin-right: 0%; - margin-left: 0; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: right; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - left: 100%; - right: auto; - } - .col-md-pull-11 { - left: 91.66666667%; - right: auto; - } - .col-md-pull-10 { - left: 83.33333333%; - right: auto; - } - .col-md-pull-9 { - left: 75%; - right: auto; - } - .col-md-pull-8 { - left: 66.66666667%; - right: auto; - } - .col-md-pull-7 { - left: 58.33333333%; - right: auto; - } - .col-md-pull-6 { - left: 50%; - right: auto; - } - .col-md-pull-5 { - left: 41.66666667%; - right: auto; - } - .col-md-pull-4 { - left: 33.33333333%; - right: auto; - } - .col-md-pull-3 { - left: 25%; - right: auto; - } - .col-md-pull-2 { - left: 16.66666667%; - right: auto; - } - .col-md-pull-1 { - left: 8.33333333%; - right: auto; - } - .col-md-pull-0 { - left: auto; - right: auto; - } - .col-md-push-12 { - right: 100%; - left: 0; - } - .col-md-push-11 { - right: 91.66666667%; - left: 0; - } - .col-md-push-10 { - right: 83.33333333%; - left: 0; - } - .col-md-push-9 { - right: 75%; - left: 0; - } - .col-md-push-8 { - right: 66.66666667%; - left: 0; - } - .col-md-push-7 { - right: 58.33333333%; - left: 0; - } - .col-md-push-6 { - right: 50%; - left: 0; - } - .col-md-push-5 { - right: 41.66666667%; - left: 0; - } - .col-md-push-4 { - right: 33.33333333%; - left: 0; - } - .col-md-push-3 { - right: 25%; - left: 0; - } - .col-md-push-2 { - right: 16.66666667%; - left: 0; - } - .col-md-push-1 { - right: 8.33333333%; - left: 0; - } - .col-md-push-0 { - right: auto; - left: 0; - } - .col-md-offset-12 { - margin-right: 100%; - margin-left: 0; - } - .col-md-offset-11 { - margin-right: 91.66666667%; - margin-left: 0; - } - .col-md-offset-10 { - margin-right: 83.33333333%; - margin-left: 0; - } - .col-md-offset-9 { - margin-right: 75%; - margin-left: 0; - } - .col-md-offset-8 { - margin-right: 66.66666667%; - margin-left: 0; - } - .col-md-offset-7 { - margin-right: 58.33333333%; - margin-left: 0; - } - .col-md-offset-6 { - margin-right: 50%; - margin-left: 0; - } - .col-md-offset-5 { - margin-right: 41.66666667%; - margin-left: 0; - } - .col-md-offset-4 { - margin-right: 33.33333333%; - margin-left: 0; - } - .col-md-offset-3 { - margin-right: 25%; - margin-left: 0; - } - .col-md-offset-2 { - margin-right: 16.66666667%; - margin-left: 0; - } - .col-md-offset-1 { - margin-right: 8.33333333%; - margin-left: 0; - } - .col-md-offset-0 { - margin-right: 0%; - margin-left: 0; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: right; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - left: 100%; - right: auto; - } - .col-lg-pull-11 { - left: 91.66666667%; - right: auto; - } - .col-lg-pull-10 { - left: 83.33333333%; - right: auto; - } - .col-lg-pull-9 { - left: 75%; - right: auto; - } - .col-lg-pull-8 { - left: 66.66666667%; - right: auto; - } - .col-lg-pull-7 { - left: 58.33333333%; - right: auto; - } - .col-lg-pull-6 { - left: 50%; - right: auto; - } - .col-lg-pull-5 { - left: 41.66666667%; - right: auto; - } - .col-lg-pull-4 { - left: 33.33333333%; - right: auto; - } - .col-lg-pull-3 { - left: 25%; - right: auto; - } - .col-lg-pull-2 { - left: 16.66666667%; - right: auto; - } - .col-lg-pull-1 { - left: 8.33333333%; - right: auto; - } - .col-lg-pull-0 { - left: auto; - right: auto; - } - .col-lg-push-12 { - right: 100%; - left: 0; - } - .col-lg-push-11 { - right: 91.66666667%; - left: 0; - } - .col-lg-push-10 { - right: 83.33333333%; - left: 0; - } - .col-lg-push-9 { - right: 75%; - left: 0; - } - .col-lg-push-8 { - right: 66.66666667%; - left: 0; - } - .col-lg-push-7 { - right: 58.33333333%; - left: 0; - } - .col-lg-push-6 { - right: 50%; - left: 0; - } - .col-lg-push-5 { - right: 41.66666667%; - left: 0; - } - .col-lg-push-4 { - right: 33.33333333%; - left: 0; - } - .col-lg-push-3 { - right: 25%; - left: 0; - } - .col-lg-push-2 { - right: 16.66666667%; - left: 0; - } - .col-lg-push-1 { - right: 8.33333333%; - left: 0; - } - .col-lg-push-0 { - right: auto; - left: 0; - } - .col-lg-offset-12 { - margin-right: 100%; - margin-left: 0; - } - .col-lg-offset-11 { - margin-right: 91.66666667%; - margin-left: 0; - } - .col-lg-offset-10 { - margin-right: 83.33333333%; - margin-left: 0; - } - .col-lg-offset-9 { - margin-right: 75%; - margin-left: 0; - } - .col-lg-offset-8 { - margin-right: 66.66666667%; - margin-left: 0; - } - .col-lg-offset-7 { - margin-right: 58.33333333%; - margin-left: 0; - } - .col-lg-offset-6 { - margin-right: 50%; - margin-left: 0; - } - .col-lg-offset-5 { - margin-right: 41.66666667%; - margin-left: 0; - } - .col-lg-offset-4 { - margin-right: 33.33333333%; - margin-left: 0; - } - .col-lg-offset-3 { - margin-right: 25%; - margin-left: 0; - } - .col-lg-offset-2 { - margin-right: 16.66666667%; - margin-left: 0; - } - .col-lg-offset-1 { - margin-right: 8.33333333%; - margin-left: 0; - } - .col-lg-offset-0 { - margin-right: 0%; - margin-left: 0; - } -} -th { - text-align: right; -} -@media screen and (max-width: 767px) { - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-right: 0; - border-left: initial; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-left: 0; - border-right: initial; - } -} -.radio label, -.checkbox label { - padding-right: 20px; - padding-left: initial; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - margin-right: -20px; - margin-left: auto; -} -.radio-inline, -.checkbox-inline { - padding-right: 20px; - padding-left: 0; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-right: 10px; - margin-left: 0; -} -.has-feedback .form-control { - padding-left: 42.5px; - padding-right: 12px; -} -.form-control-feedback { - left: 0; - right: auto; -} -@media (min-width: 768px) { - .form-inline label { - padding-right: 0; - padding-left: initial; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - margin-right: 0; - margin-left: auto; - } -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: left; - } -} -.form-horizontal .has-feedback .form-control-feedback { - left: 15px; - right: auto; -} -.caret { - margin-right: 2px; - margin-left: 0; -} -.dropdown-menu { - right: 0; - left: auto; - float: left; - text-align: right; -} -.dropdown-menu.pull-right { - left: 0; - right: auto; - float: right; -} -.dropdown-menu-right { - left: auto; - right: 0; -} -.dropdown-menu-left { - left: 0; - right: auto; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - left: auto; - right: 0; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group > .btn, -.btn-group-vertical > .btn { - float: right; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-right: -1px; - margin-left: 0px; -} -.btn-toolbar { - margin-right: -5px; - margin-left: 0px; -} -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: right; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-right: 5px; - margin-left: 0px; -} -.btn-group > .btn:first-child { - margin-right: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn-group { - float: right; -} -.btn-group.btn-group-justified > .btn, -.btn-group.btn-group-justified > .btn-group { - float: none; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child > .btn:last-child, -.btn-group > .btn-group:first-child > .dropdown-toggle { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group > .btn-group:last-child > .btn:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn .caret { - margin-right: 0; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-right: 0; -} -.input-group .form-control { - float: right; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.input-group-addon:first-child { - border-right: 1px solid #cccccc; - border-left: 0px; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group-addon:last-child { - border-left: 1px solid #cccccc; - border-right: 0px; -} -.input-group-btn > .btn + .btn { - margin-right: -1px; - margin-left: auto; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-left: -1px; - margin-right: auto; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - margin-right: -1px; - margin-left: auto; -} -.nav { - padding-right: 0; - padding-left: initial; -} -.nav-tabs > li { - float: right; -} -.nav-tabs > li > a { - margin-left: auto; - margin-right: -2px; - border-radius: 4px 4px 0 0; -} -.nav-pills > li { - float: right; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-right: 2px; - margin-left: auto; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-right: 0; - margin-left: auto; -} -.nav-justified > .dropdown .dropdown-menu { - right: auto; -} -.nav-tabs-justified > li > a { - margin-left: 0; - margin-right: auto; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-radius: 4px 4px 0 0; - } -} -@media (min-width: 768px) { - .navbar-header { - float: right; - } -} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; -} -.navbar-brand { - float: right; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-right: -15px; - margin-left: auto; - } -} -.navbar-toggle { - float: left; - margin-left: 15px; - margin-right: auto; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 25px 5px 15px; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: right; - } - .navbar-nav > li { - float: right; - } - .navbar-nav.navbar-right:last-child { - margin-left: -15px; - margin-right: auto; - } - .navbar-nav.navbar-right.flip { - float: left !important; - } - .navbar-nav.navbar-right .dropdown-menu { - left: 0; - right: auto; - } -} -@media (min-width: 768px) { - .navbar-text { - float: right; - } - .navbar-text.navbar-right:last-child { - margin-left: 0; - margin-right: auto; - } -} -.pagination { - padding-right: 0; -} -.pagination > li > a, -.pagination > li > span { - float: right; - margin-right: -1px; - margin-left: 0px; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - margin-right: -1px; - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.pager { - padding-right: 0; - padding-left: initial; -} -.pager .next > a, -.pager .next > span { - float: left; -} -.pager .previous > a, -.pager .previous > span { - float: right; -} -.nav-pills > li > a > .badge { - margin-left: 0px; - margin-right: 3px; -} -.alert-dismissable, -.alert-dismissible { - padding-left: 35px; - padding-right: 15px; -} -.alert-dismissable .close, -.alert-dismissible .close { - right: 0; - left: 21px; -} -.progress-bar { - float: right; -} -.media > .pull-left { - margin-right: 10px; -} -.media > .pull-left.flip { - margin-right: 0; - margin-left: 10px; -} -.media > .pull-right { - margin-left: 10px; -} -.media > .pull-right.flip { - margin-left: 0; - margin-right: 10px; -} -.media-list { - padding-right: 0; - padding-left: initial; - list-style: none; -} -.list-group { - padding-right: 0; - padding-left: initial; -} -.list-group-item > .badge { - float: left; -} -.list-group-item > .badge + .badge { - margin-right: 5px; - margin-left: auto; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-right-radius: 3px; - border-top-left-radius: 0; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-left-radius: 3px; - border-top-right-radius: 0; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; - border-top-right-radius: 0; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; - border-top-left-radius: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-right: 0; - border-left: none; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: none; - border-left: 0; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object { - right: 0; - left: auto; -} -.close { - float: left; -} -.modal-footer { - text-align: left; -} -.modal-footer .btn + .btn { - margin-left: auto; - margin-right: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-right: -1px; - margin-left: auto; -} -.modal-footer .btn-block + .btn-block { - margin-right: 0; - margin-left: auto; -} -.popover { - left: auto; - text-align: right; -} -.popover.top > .arrow { - right: 50%; - left: auto; - margin-right: -11px; - margin-left: auto; -} -.popover.top > .arrow:after { - margin-right: -10px; - margin-left: auto; -} -.popover.bottom > .arrow { - right: 50%; - left: auto; - margin-right: -11px; - margin-left: auto; -} -.popover.bottom > .arrow:after { - margin-right: -10px; - margin-left: auto; -} -.carousel-control { - right: 0; - bottom: 0; -} -.carousel-control.left { - right: auto; - left: 0; - background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%)); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - left: auto; - right: 0; - background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%)); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - right: auto; - margin-right: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - left: auto; - margin-left: -10px; -} -.carousel-indicators { - right: 50%; - left: 0; - margin-right: -30%; - margin-left: 0; - padding-left: 0; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: 0; - margin-right: -15px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-left: 0; - margin-right: -15px; - } - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } -} -.pull-right.flip { - float: left !important; -} -.pull-left.flip { - float: right !important; -} -/*# sourceMappingURL=bootstrap-rtl.css.map */ \ No newline at end of file diff --git a/getfedora.org/static/css/bootstrap-rtl.css.map b/getfedora.org/static/css/bootstrap-rtl.css.map deleted file mode 100644 index 664f2fe..0000000 --- a/getfedora.org/static/css/bootstrap-rtl.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/normalize-rtl.less","less/type-rtl.less","less/mixins/grid-framework-rtl.less","less/grid-rtl.less","less/tables-rtl.less","less/forms-rtl.less","less/dropdowns-rtl.less","less/button-groups-rtl.less","bootstrap/less/mixins/border-radius.less","less/input-groups-rtl.less","less/navs-rtl.less","less/navbar-rtl.less","less/pagination-rtl.less","less/pager-rtl.less","less/badges-rtl.less","less/alerts-rtl.less","less/progress-bars-rtl.less","less/media-rtl.less","less/list-group-rtl.less","less/panels-rtl.less","less/responsive-embed-rtl.less","less/close-rtl.less","less/modals-rtl.less","less/popovers-rtl.less","less/carousel-rtl.less","less/mixins/gradients-rtl.less","less/utilities-rtl.less"],"names":[],"mappings":"AAIA;EACE,cAAA;;AAOF;EACE,cAAA;;ACNF;EACE,gBAAA;EACA,qBAAA;;AAIF;EALE,gBAAA;EACA,qBAAA;EAMA,kBAAA;EACA,cAAA;;AAGF;EACE,eAAA;EACA,oBAAA;;AAqBF,QAX6C;EAW7C,cAVI;IACE,YAAA;IACA,YAAA;IACA,gBAAA;;EAON,cALI;IACE,mBAAA;IACA,cAAA;;;AAMN;EACE,+BAAA;EACA,cAAA;;AAMF;AACA,UAAU;EACR,kBAAA;EACA,gBAAA;EACA,8BAAA;EACA,eAAA;EACA,gBAAA;;AC3CE;EACE,kBAAA;EAEA,eAAA;EAEA,kBAAA;EACA,mBAAA;;AAgBF;EACE,YAAA;;AAOJ,KAAK,EAAQ,CAAC;EACZ,WAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,kBAAA;;AAgBF,KAAK,EAAQ,MAAM;EACjB,UAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,SAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,SAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,SAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,WAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,iBAAA;EACA,WAAA;;AAIF,KAAK,EAAQ;EACX,UAAA;EACA,WAAA;;AApBF,KAAK,EAAQ,MAAM;EACjB,WAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,UAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,UAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,UAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,mBAAA;EACA,OAAA;;AAFF,KAAK,EAAQ,MAAM;EACjB,kBAAA;EACA,OAAA;;AAIF,KAAK,EAAQ;EACX,WAAA;EACA,OAAA;;AAgBF,KAAK,EAAQ,QAAQ;EACnB,kBAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,iBAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,iBAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,iBAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,0BAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;EACA,cAAA;;AAFF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;EACA,cAAA;;AChDJ,QALmC;EDc/B;IACE,YAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAgBF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,iBAAA;IACA,WAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;IACA,WAAA;;EApBF,KAAK,EAAQ,MAAM;IACjB,WAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,OAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;IACA,OAAA;;EAgBF,KAAK,EAAQ,QAAQ;IACnB,kBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;IACA,cAAA;;;ACvCJ,QALmC;EDK/B;IACE,YAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAgBF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,iBAAA;IACA,WAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;IACA,WAAA;;EApBF,KAAK,EAAQ,MAAM;IACjB,WAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,OAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;IACA,OAAA;;EAgBF,KAAK,EAAQ,QAAQ;IACnB,kBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;IACA,cAAA;;;AChCJ,QAHmC;EDJ/B;IACE,YAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAgBF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,SAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,WAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,iBAAA;IACA,WAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;IACA,WAAA;;EApBF,KAAK,EAAQ,MAAM;IACjB,WAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,UAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,mBAAA;IACA,OAAA;;EAFF,KAAK,EAAQ,MAAM;IACjB,kBAAA;IACA,OAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;IACA,OAAA;;EAgBF,KAAK,EAAQ,QAAQ;IACnB,kBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,0BAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;IACA,cAAA;;EAFF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;IACA,cAAA;;;AEzEJ;EACE,iBAAA;;AAoCF,mBA1BgD;EA0BhD,iBAvBI;IACE,SAAA;;EAsBN,iBAvBI,kBAIE,QAGE,KACE,KAAI;EAed,iBAvBI,kBAKE,QAEE,KACE,KAAI;EAed,iBAvBI,kBAME,QACE,KACE,KAAI;EAed,iBAvBI,kBAIE,QAGE,KAEE,KAAI;EAcd,iBAvBI,kBAKE,QAEE,KAEE,KAAI;EAcd,iBAvBI,kBAME,QACE,KAEE,KAAI;IACF,eAAA;IACA,oBAAA;;EAYZ,iBAvBI,kBAIE,QAGE,KAME,KAAI;EAUd,iBAvBI,kBAKE,QAEE,KAME,KAAI;EAUd,iBAvBI,kBAME,QACE,KAME,KAAI;EAUd,iBAvBI,kBAIE,QAGE,KAOE,KAAI;EASd,iBAvBI,kBAKE,QAEE,KAOE,KAAI;EASd,iBAvBI,kBAME,QACE,KAOE,KAAI;IACF,cAAA;IACA,qBAAA;;;AC7BZ,MAGE;AAFF,SAEE;EACE,mBAAA;EACA,qBAAA;;AAGJ,MAAO,MAAK;AACZ,aAAc,MAAK;AACnB,SAAU,MAAK;AACf,gBAAiB,MAAK;EACpB,mBAAA;EACA,iBAAA;;AAIF;AACA;EACE,mBAAA;EACA,eAAA;;AAEF,aAAc;AACd,gBAAiB;EACf,kBAAA;EACA,cAAA;;AAGF,aAGE;EACE,oBAAA;EACA,mBAAA;;AAIJ;EACE,OAAA;EACA,WAAA;;AA+BF,QAdqC;EAcrC,YAZM;IACE,gBAAA;IACA,qBAAA;;EAUR,YAPI,OAAO,MAAK;EAOhB,YANI,UAAU,MAAK;IACb,eAAA;IACA,iBAAA;;;AAsBJ,QANmC;EAMnC,gBALE;IACE,gBAAA;;;AANN,gBAcE,cAAc;EACZ,UAAA;EACA,WAAA;;AC9FJ;EACE,iBAAA;EACA,cAAA;;AAIF;EACE,QAAA;EACA,UAAA;EACA,WAAA;EACA,iBAAA;;AAKA,cAAC;EACC,OAAA;EACA,WAAA;EACA,YAAA;;AAQJ;EACE,UAAA;EACA,QAAA;;AAQF;EACE,OAAA;EACA,WAAA;;AAoBF,QAb2C;EACzC,aACE;IApBF,UAAA;IACA,QAAA;;EAkBA,aAME;IAfF,OAAA;IACA,WAAA;;;ACtCF,UAEE;AADF,mBACE;EACE,YAAA;;AAKJ,UACE,KAAK;AADP,UAEE,KAAK;AAFP,UAGE,WAAW;AAHb,UAIE,WAAW;EACT,kBAAA;EACA,gBAAA;;AAKJ;EACE,kBAAA;EACA,gBAAA;;AAFF,YAIE;AAJF,YAKE;EACE,YAAA;;AANJ,YAQE;AARF,YASE;AATF,YAUE;EACE,iBAAA;EACA,gBAAA;;AAKJ,UAAW,OAAM;EACf,eAAA;;AACA,UAFS,OAAM,YAEd,IAAI,aAAa,IAAI;EACpB,4BAAA;EACA,+BAAA;EC9BF,4BAAA;EACG,yBAAA;;ADkCL,UAAW,OAAM,WAAW,IAAI;AAChC,UAAW,mBAAkB,IAAI;EAC7B,2BAAA;EACA,8BAAA;EC9CF,6BAAA;EACG,0BAAA;;ADkDL,UAAW;EACT,YAAA;;AAGF,UAAU,oBAAqB;AAC/B,UAAU,oBAAqB;EAC7B,WAAA;;AAGF,UAAW,aAAY,IAAI,cAAc,IAAI,aAAc;EACzD,gBAAA;;AAEF,UAAW,aAAY,YACrB,OAAM;AADR,UAAW,aAAY,YAErB;EACE,4BAAA;EACA,+BAAA;EC3DF,4BAAA;EACG,yBAAA;;AD8DL,UAAW,aAAY,WAAY,OAAM;EACrC,2BAAA;EACA,8BAAA;ECzEF,6BAAA;EACG,0BAAA;;AD6EL,IAAK;EACH,eAAA;;AAMF,mBAEE,OAAO;AAFT,mBAGE,OAAO;AAHT,mBAIE,aAAa;AAJf,mBAKE,aAAa;EACX,gBAAA;EACA,eAAA;;AE7FJ,YACE;EAIE,YAAA;;AAKJ,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,YAAa;AAC7B,gBAAgB,YAAa,aAAa;AAC1C,gBAAgB,YAAa;AAC7B,gBAAgB,WAAY,OAAM,IAAI,aAAa,IAAI;AACvD,gBAAgB,WAAY,aAAY,IAAI,aAAc;EDfxD,+BAAA;EACG,4BAAA;EAOH,4BAAA;EACG,yBAAA;;ACUL,kBAAkB;EAChB,+BAAA;EACA,gBAAA;;AAEF,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,WAAY;AAC5B,gBAAgB,WAAY,aAAa;AACzC,gBAAgB,WAAY;AAC5B,gBAAgB,YAAa,OAAM,IAAI;AACvC,gBAAgB,YAAa,aAAY,IAAI,cAAe;EDrB1D,8BAAA;EACG,2BAAA;EATH,6BAAA;EACG,0BAAA;;ACgCL,kBAAkB;EAChB,8BAAA;EACA,iBAAA;;AAKF,gBAIE,OACE;EACE,kBAAA;EACA,iBAAA;;AAKJ,gBAAC,YACC;AADF,gBAAC,YAEC;EACE,iBAAA;EACA,kBAAA;;AAGJ,gBAAC,WACC;AADF,gBAAC,WAEC;EACE,kBAAA;EACA,iBAAA;;AC9DN;EACE,gBAAA;EACA,qBAAA;;AAQF,SACE;EACE,YAAA;;AAFJ,SACE,KAIE;EACE,iBAAA;EACA,kBAAA;EACA,0BAAA;;AAQN,UACE;EACE,YAAA;;AAFJ,UACE,KAIE;EACE,kBAAA;;AANN,UACE,KAOE;EACE,iBAAA;EACA,iBAAA;;AAON,YACE;EACE,WAAA;;AAFJ,YACE,KAEE;EACE,eAAA;EACA,iBAAA;;AAYN,cAEE,YAAY;EACV,WAAA;;AAOJ,mBAEE,KAAK;EAEH,cAAA;EACA,kBAAA;;AAQJ,QALqC;EAKrC,mBAJI,KAAK;IACH,0BAAA;;;ACzEN,QAH6C;EAG7C;IAFI,YAAA;;;AAeJ;EACE,mBAAA;EACA,kBAAA;;AAMF;EACE,YAAA;;AASF,QAP6C;EACzC,OAAQ,aAAa;EACrB,OAAQ,mBAAmB;IACzB,mBAAA;IACA,iBAAA;;;AAWN;EACE,WAAA;EACA,iBAAA;EACA,kBAAA;;AAqBA,QAV+C;EAU/C,WARE,MAAM,eACJ,KAAK;EAOT,WARE,MAAM,eAEJ;IACE,0BAAA;;;AA6BR,QAvB6C;EAuB7C;IAtBI,YAAA;;EAsBJ,WApBI;IACE,YAAA;;EAIA,WADD,aACE;IACC,kBAAA;IACA,kBAAA;;EAGF,WAND,aAME;IACC,sBAAA;;EAPJ,WAAC,aAUC;IACE,OAAA;IACA,WAAA;;;AAqBR,QAT6C;EAS7C;IARI,YAAA;;EAGA,YAAC,aAAa;IACZ,cAAA;IACA,kBAAA;;;ACjHN;EACE,gBAAA;;AADF,WAGE,KACE;AAJJ,WAGE,KAEE;EACE,YAAA;EACA,kBAAA;EACA,gBAAA;;AAEF,WAPF,KAOG,YACC;AADF,WAPF,KAOG,YAEC;EACE,cAAA;EJTN,+BAAA;EACG,4BAAA;EAOH,4BAAA;EACG,yBAAA;;AIKD,WAfF,KAeG,WACC;AADF,WAfF,KAeG,WAEC;EACE,kBAAA;EJTN,8BAAA;EACG,2BAAA;EATH,6BAAA;EACG,0BAAA;;AKHL;EACE,gBAAA;EACA,qBAAA;;AAFF,MAIE,MACE;AALJ,MAIE,MAEE;EACE,WAAA;;AAPN,MAWE,UACE;AAZJ,MAWE,UAEE;EACE,YAAA;;ACXJ,UAAW,KAAK,IAAI;EAClB,gBAAA;EACA,iBAAA;;ACDJ;AACA;EACC,kBAAA;EACA,mBAAA;;AAHD,kBAME;AALF,kBAKE;EACE,QAAA;EACA,UAAA;;ACZJ;EACE,YAAA;;ACCF,MACE;EACE,kBAAA;;AACA,MAFF,aAEG;EACC,eAAA;EACA,iBAAA;;AALN,MAQE;EACI,iBAAA;;AACF,MAFF,cAEG;EACC,cAAA;EACA,kBAAA;;AASN;EACE,gBAAA;EACA,qBAAA;EACA,gBAAA;;ACtBF;EACE,gBAAA;EACA,qBAAA;;AAQF,gBAGE;EACE,WAAA;;AAJJ,gBAME,SAAS;EACP,iBAAA;EACA,iBAAA;;AClBJ,MAEE,SAAQ,YAGN,QAAO,YAEL,KAAI,YACF,GAAE;AARV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YAEL,KAAI,YACF,GAAE;AARV,MAEE,SAAQ,YAIN,QAAO,YACL,KAAI,YACF,GAAE;AARV,MAGE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YACL,KAAI,YACF,GAAE;AARV,MAEE,SAAQ,YAGN,QAAO,YAEL,KAAI,YAEF,GAAE;AATV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YAEL,KAAI,YAEF,GAAE;AATV,MAEE,SAAQ,YAIN,QAAO,YACL,KAAI,YAEF,GAAE;AATV,MAGE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YACL,KAAI,YAEF,GAAE;EACA,4BAAA;EACA,yBAAA;;AAXV,MAEE,SAAQ,YAGN,QAAO,YAEL,KAAI,YAMF,GAAE;AAbV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YAEL,KAAI,YAMF,GAAE;AAbV,MAEE,SAAQ,YAIN,QAAO,YACL,KAAI,YAMF,GAAE;AAbV,MAGE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YACL,KAAI,YAMF,GAAE;AAbV,MAEE,SAAQ,YAGN,QAAO,YAEL,KAAI,YAOF,GAAE;AAdV,MAGE,oBAAmB,YAAa,SAAQ,YAEtC,QAAO,YAEL,KAAI,YAOF,GAAE;AAdV,MAEE,SAAQ,YAIN,QAAO,YACL,KAAI,YAOF,GAAE;AAdV,MAGE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YACL,KAAI,YAOF,GAAE;EACA,2BAAA;EACA,0BAAA;;AAhBV,MAsBE,SAAQ,WAGN,QAAO,WAEL,KAAI,WACF,GAAE;AA5BV,MAuBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WAEL,KAAI,WACF,GAAE;AA5BV,MAsBE,SAAQ,WAIN,QAAO,WACL,KAAI,WACF,GAAE;AA5BV,MAuBE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WACL,KAAI,WACF,GAAE;AA5BV,MAsBE,SAAQ,WAGN,QAAO,WAEL,KAAI,WAEF,GAAE;AA7BV,MAuBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WAEL,KAAI,WAEF,GAAE;AA7BV,MAsBE,SAAQ,WAIN,QAAO,WACL,KAAI,WAEF,GAAE;AA7BV,MAuBE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WACL,KAAI,WAEF,GAAE;EACA,8BAAA;EACA,0BAAA;;AA/BV,MAsBE,SAAQ,WAGN,QAAO,WAEL,KAAI,WAMF,GAAE;AAjCV,MAuBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WAEL,KAAI,WAMF,GAAE;AAjCV,MAsBE,SAAQ,WAIN,QAAO,WACL,KAAI,WAMF,GAAE;AAjCV,MAuBE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WACL,KAAI,WAMF,GAAE;AAjCV,MAsBE,SAAQ,WAGN,QAAO,WAEL,KAAI,WAOF,GAAE;AAlCV,MAuBE,oBAAmB,WAAY,SAAQ,WAErC,QAAO,WAEL,KAAI,WAOF,GAAE;AAlCV,MAsBE,SAAQ,WAIN,QAAO,WACL,KAAI,WAOF,GAAE;AAlCV,MAuBE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WACL,KAAI,WAOF,GAAE;EACA,+BAAA;EACA,yBAAA;;AApCV,MAyCE,kBAEE,QAGE,KACE,KAAI;AA/CZ,MA0CE,oBAAoB,kBAClB,QAGE,KACE,KAAI;AA/CZ,MAyCE,kBAGE,QAEE,KACE,KAAI;AA/CZ,MA0CE,oBAAoB,kBAElB,QAEE,KACE,KAAI;AA/CZ,MAyCE,kBAIE,QACE,KACE,KAAI;AA/CZ,MA0CE,oBAAoB,kBAGlB,QACE,KACE,KAAI;AA/CZ,MAyCE,kBAEE,QAGE,KAEE,KAAI;AAhDZ,MA0CE,oBAAoB,kBAClB,QAGE,KAEE,KAAI;AAhDZ,MAyCE,kBAGE,QAEE,KAEE,KAAI;AAhDZ,MA0CE,oBAAoB,kBAElB,QAEE,KAEE,KAAI;AAhDZ,MAyCE,kBAIE,QACE,KAEE,KAAI;AAhDZ,MA0CE,oBAAoB,kBAGlB,QACE,KAEE,KAAI;EACF,eAAA;EACA,iBAAA;;AAlDV,MAyCE,kBAEE,QAGE,KAME,KAAI;AApDZ,MA0CE,oBAAoB,kBAClB,QAGE,KAME,KAAI;AApDZ,MAyCE,kBAGE,QAEE,KAME,KAAI;AApDZ,MA0CE,oBAAoB,kBAElB,QAEE,KAME,KAAI;AApDZ,MAyCE,kBAIE,QACE,KAME,KAAI;AApDZ,MA0CE,oBAAoB,kBAGlB,QACE,KAME,KAAI;AApDZ,MAyCE,kBAEE,QAGE,KAOE,KAAI;AArDZ,MA0CE,oBAAoB,kBAClB,QAGE,KAOE,KAAI;AArDZ,MAyCE,kBAGE,QAEE,KAOE,KAAI;AArDZ,MA0CE,oBAAoB,kBAElB,QAEE,KAOE,KAAI;AArDZ,MAyCE,kBAIE,QACE,KAOE,KAAI;AArDZ,MA0CE,oBAAoB,kBAGlB,QACE,KAOE,KAAI;EACF,kBAAA;EACA,cAAA;;AC5DV,iBAEE;AAFF,iBAGE;AAHF,iBAIE;AAJF,iBAKE;EACE,QAAA;EACA,UAAA;;ACNJ;EACE,WAAA;;ACDF;EACE,gBAAA;;AADF,aAIE,KAAK;EACH,iBAAA;EACA,iBAAA;;AANJ,aASE,WAAW,KAAK;EACd,kBAAA;EACA,iBAAA;;AAXJ,aAcE,WAAW;EACT,eAAA;EACA,iBAAA;;AChBJ;EACE,UAAA;EACA,iBAAA;;AAIA,QAAC,IAAK;EACJ,UAAA;EACA,UAAA;EACA,mBAAA;EACA,iBAAA;;AACA,QALD,IAAK,SAKH;EACC,mBAAA;EACA,iBAAA;;AAGJ,QAAC,OAAQ;EACP,UAAA;EACA,UAAA;EACA,mBAAA;EACA,iBAAA;;AACA,QALD,OAAQ,SAKN;EACC,mBAAA;EACA,iBAAA;;ACpBN;EACE,QAAA;EACA,SAAA;;AAGA,iBAAC;EACC,WAAA;EACA,OAAA;ECNA,kBAAkB,8BAA8B,mCAAyC,uCAAzF;EACA,kBAAkB,2EAAlB;EACA,kBAAkB,4EAAlB;EACA,2BAAA;EACA,sHAAA;;ADKF,iBAAC;EACC,UAAA;EACA,QAAA;ECXA,kBAAkB,8BAA8B,sCAAyC,oCAAzF;EACA,kBAAkB,2EAAlB;EACA,kBAAkB,4EAAlB;EACA,2BAAA;EACA,sHAAA;;ADLJ,iBAgBE;AAhBF,iBAiBE;EACE,SAAA;EACA,WAAA;EACA,mBAAA;;AApBJ,iBAsBE;AAtBF,iBAuBE;EACE,UAAA;EACA,UAAA;EACA,kBAAA;;AASJ;EACE,UAAA;EACA,OAAA;EACA,kBAAA;EACA,cAAA;EACA,eAAA;;AA4BF,mBAvB8C;EAG5C,iBACE;EADF,iBAEE;IACE,cAAA;IACA,mBAAA;;EAJJ,iBAME;EANF,iBAOE;IACE,cAAA;IACA,mBAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;;AEnEF,WAAC;EACC,sBAAA;;AAIF,UAAC;EACC,uBAAA","sourcesContent":["//\n// 1. Set direction to RTL\n//\n\nhtml {\n direction: rtl;\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n direction: rtl;\n}\n","//\n// RTL Typography\n// --------------------------------------------------\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-right: 0;\n padding-left: initial;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-right: -5px;\n margin-left: 0;\n}\n\ndd {\n margin-right: 0; // Undo browser default\n margin-left: initial;\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n\n @media (min-width: @grid-float-breakpoint) {\n dt {\n float: right;\n clear: right;\n text-align: left;\n }\n dd {\n margin-right: @component-offset-horizontal;\n margin-left: 0;\n }\n }\n}\n\n// Blockquotes\nblockquote {\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-left {\n padding-left: 15px;\n padding-right: 0;\n border-left: 5px solid @blockquote-border-color;\n border-right: 0;\n text-align: left;\n}\n","// RTL Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-rtl-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-rtl-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: right;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-rtl-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-rtl-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n right: percentage((@index / @grid-columns));\n left: 0;\n }\n}\n.calc-rtl-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n right: auto;\n left: 0;\n }\n}\n.calc-rtl-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n left: percentage((@index / @grid-columns));\n right: auto;\n }\n}\n.calc-rtl-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n left: auto;\n right: auto;\n }\n}\n.calc-rtl-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-right: percentage((@index / @grid-columns));\n margin-left: 0;\n }\n}\n\n// Basic looping in LESS\n.loop-rtl-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-rtl-grid-column(@index, @class, @type);\n // next iteration\n .loop-rtl-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-rtl-grid(@class) {\n .float-rtl-grid-columns(@class);\n .loop-rtl-grid-columns(@grid-columns, @class, width);\n .loop-rtl-grid-columns(@grid-columns, @class, pull);\n .loop-rtl-grid-columns(@grid-columns, @class, push);\n .loop-rtl-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// RTL Grid system\n// --------------------------------------------------\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-rtl-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-rtl-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-rtl-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-rtl-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-rtl-grid(lg);\n}\n","//\n// Tables\n// --------------------------------------------------\n\nth {\n text-align: right;\n}\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n @media screen and (max-width: @screen-xs-max) {\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-right: 0;\n border-left: initial;\n }\n > th:last-child,\n > td:last-child {\n border-left: 0;\n border-right: initial;\n }\n }\n }\n\n }\n }\n}\n","//\n// RTL Forms\n// --------------------------------------------------\n\n\n.radio,\n.checkbox {\n\n label {\n padding-right: 20px;\n padding-left: initial;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n margin-right: -20px;\n margin-left: auto;\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n padding-right: 20px;\n padding-left: 0;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-right: 10px; // space out consecutive inline controls\n margin-left: 0;\n}\n\n.has-feedback {\n\n // Ensure icons don't overlap text\n .form-control {\n padding-left: (@input-height-base * 1.25);\n padding-right: 12px;\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n left: 0;\n right: auto;\n}\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n\n label {\n padding-right: 0;\n padding-left: initial;\n }\n\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n margin-right: 0;\n margin-left: auto;\n }\n\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: left;\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n left: (@grid-gutter-width / 2);\n right: auto;\n }\n}\n","//\n// RTL Dropdown menus\n// --------------------------------------------------\n\n// Dropdown arrow/caret\n.caret {\n margin-right: 2px;\n margin-left: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n right: 0;\n left: auto;\n float: left;\n text-align: right; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n left: 0;\n right: auto;\n float: right;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n\n","//\n// RTL Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n > .btn {\n float: right;\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-right: -1px;\n margin-left: 0px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-right: -5px; // Offset the first child's margin\n margin-left: 0px;\n\n .btn-group,\n .input-group {\n float: right;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-right: 5px;\n margin-left: 0px;\n }\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-right: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n border-top-right-radius: @border-radius-base;\n border-bottom-right-radius: @border-radius-base;\n .border-left-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-top-left-radius: @border-radius-base;\n border-bottom-left-radius: @border-radius-base;\n .border-right-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: right;\n}\n\n.btn-group.btn-group-justified > .btn,\n.btn-group.btn-group-justified > .btn-group {\n float: none;\n}\n\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child {\n > .btn:last-child,\n > .dropdown-toggle {\n border-top-right-radius: @border-radius-base;\n border-bottom-right-radius: @border-radius-base;\n .border-left-radius(0);\n }\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n border-top-left-radius: @border-radius-base;\n border-bottom-left-radius: @border-radius-base;\n .border-right-radius(0);\n}\n\n// Reposition the caret\n.btn .caret {\n margin-right: 0;\n}\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-right: 0;\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n .form-control {\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: right;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(@border-radius-base);\n .border-left-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 1px solid @input-group-addon-border-color;\n border-left: 0px;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(@border-radius-base);\n .border-right-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 1px solid @input-group-addon-border-color;\n border-right: 0px;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n + .btn {\n margin-right: -1px;\n margin-left: auto;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n margin-right: auto;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n margin-left: auto;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n padding-right: 0; // Override default ul/ol\n padding-left: initial;\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n > li {\n float: right;\n\n // Actual tabs (as links)\n > a {\n margin-left: auto;\n margin-right: -2px;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: right;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-right: 2px;\n margin-left: auto;\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-right: 0; // no need for this gap between nav items\n margin-left: auto;\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n\n > .dropdown .dropdown-menu {\n right: auto;\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n\n > li > a {\n // Override margin from .nav-tabs\n margin-left: 0;\n margin-right: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n }\n}\n","//\n// RTL Navbars\n// --------------------------------------------------\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n\n @media (min-width: @grid-float-breakpoint) {\n float: right;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: right;\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-right: -@navbar-padding-horizontal;\n margin-left: auto;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: auto;\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a,\n .dropdown-header {\n padding: 5px 25px 5px 15px;\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: right;\n\n > li {\n float: right;\n }\n\n &.navbar-right {\n &:last-child {\n margin-left: -@navbar-padding-horizontal;\n margin-right: auto;\n }\n\n &.flip {\n float: left !important;\n }\n\n .dropdown-menu {\n left: 0;\n right: auto;\n }\n }\n }\n}\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n\n @media (min-width: @grid-float-breakpoint) {\n float: right;\n\n // Outdent the form if last child to line up with content down the page\n &.navbar-right:last-child {\n margin-left: 0;\n margin-right: auto;\n }\n }\n}\n","//\n// RTL Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n padding-right: 0;\n\n > li {\n > a,\n > span {\n float: right; // Collapse white-space\n margin-right: -1px;\n margin-left: 0px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-right-radius(@border-radius-base);\n .border-left-radius(0);\n }\n }\n &:last-child {\n > a,\n > span {\n margin-right: -1px;\n .border-left-radius(@border-radius-base);\n .border-right-radius(0);\n }\n }\n }\n\n}\n","//\n// RTL Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-right: 0;\n padding-left: initial;\n\n .next {\n > a,\n > span {\n float: left;\n }\n }\n\n .previous {\n > a,\n > span {\n float: right;\n }\n }\n\n}\n","//\n// RTL Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n\n .nav-pills > li > a > & {\n margin-left: 0px;\n margin-right: 3px;\n }\n}\n","//\n// RTL Alerts\n// --------------------------------------------------\n\n\n// Dismissable alerts\n//\n// Expand the left padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-left: (@alert-padding + 20);\n padding-right: (@alert-padding);\n\n // Adjust close link position\n .close {\n right: 0;\n left: 21px;\n }\n}\n","//\n// RTL Progress bars\n// --------------------------------------------------\n\n// Bar of progress\n.progress-bar {\n float: right;\n}\n","// RTL Media objects\n// --------------------------------------------------\n\n\n// Media image alignment\n// -------------------------\n\n.media {\n > .pull-left {\n margin-right: 10px;\n &.flip {\n margin-right: 0;\n margin-left: 10px;\n }\n }\n > .pull-right {\n margin-left: 10px;\n &.flip {\n margin-left: 0;\n margin-right: 10px;\n }\n }\n}\n\n// Media list variation\n// -------------------------\n\n// Undo default ul/ol styles\n.media-list {\n padding-right: 0;\n padding-left: initial;\n list-style: none;\n}\n\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on
    ,
      , or
      .\n\n.list-group {\n padding-right: 0; // reset padding because ul and ol\n padding-left: initial;\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n\n // Align badges within list items\n > .badge {\n float: left;\n }\n > .badge + .badge {\n margin-right: 5px;\n margin-left: auto;\n }\n}\n","//\n// RTL Panels\n// --------------------------------------------------\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n td:first-child,\n th:first-child {\n border-top-right-radius: (@panel-border-radius - 1);\n border-top-left-radius: 0;\n }\n td:last-child,\n th:last-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: 0;\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: 0;\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n border-top-left-radius: 0;\n }\n }\n }\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-right: 0;\n border-left: none;\n }\n > th:last-child,\n > td:last-child {\n border-right: none;\n border-left: 0;\n }\n }\n }\n }\n}\n","// RTL Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n\n .embed-responsive-item,\n iframe,\n embed,\n object {\n right: 0;\n left: auto;\n }\n\n}\n","//\n// RTL Close icons\n// --------------------------------------------------\n\n\n.close {\n float: left;\n}\n","//\n// RTL Modals\n// --------------------------------------------------\n\n// Footer (for actions)\n.modal-footer {\n text-align: left; // right align buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: auto;\n margin-right: 5px;\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-right: -1px;\n margin-left: auto;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-right: 0;\n margin-left: auto;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n left: auto;\n text-align: right;\n}\n\n.popover {\n &.top > .arrow {\n right: 50%;\n left: auto;\n margin-right: -@popover-arrow-outer-width;\n margin-left: auto;\n &:after {\n margin-right: -@popover-arrow-width;\n margin-left: auto;\n }\n }\n &.bottom > .arrow {\n right: 50%;\n left: auto;\n margin-right: -@popover-arrow-outer-width;\n margin-left: auto;\n &:after {\n margin-right: -@popover-arrow-width;\n margin-left: auto;\n }\n }\n\n}\n","//\n// RTL Carousel\n// --------------------------------------------------\n\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n right: 0;\n bottom: 0;\n\n // Set gradients for backgrounds\n &.left {\n right: auto;\n left: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n right: auto;\n margin-right: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n left: auto;\n margin-left: -10px;\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n right: 50%;\n left: 0;\n margin-right: -30%;\n margin-left: 0;\n padding-left: 0;\n\n}\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: 0;\n margin-right: -15px;\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-left: 0;\n margin-right: -15px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n}\n","// RTL Gradients\n\n#gradient {\n\n // Horizontal gradient, from right to left\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #333; @end-color: #555; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .horizontal-three-colors(@start-color: #c3325f; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #00b3ee) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n}\n","//\n// Temporary RTL style to fix bugs rapidly. \n// They will move to some place more appropriate later.\n// --------------------------------------------------\n\n.pull-right {\n &.flip {\n float: left !important;\n }\n}\n.pull-left {\n &.flip {\n float: right !important;\n }\n}\n"]} \ No newline at end of file diff --git a/getfedora.org/static/css/bootstrap-theme.css b/getfedora.org/static/css/bootstrap-theme.css deleted file mode 100644 index 94a8086..0000000 --- a/getfedora.org/static/css/bootstrap-theme.css +++ /dev/null @@ -1,97 +0,0 @@ -body -{ -font-family: "Open sans", helvetica, arial; -} - - -/* Navbar */ - -.navbar-inverse { border-radius: 0; background:rgba(255, 255, 255, 1); border-bottom:1px solid rgba(255, 255, 255, 0.15); min-height:100px; padding-top:25px; margin-bottom:0;} -.navbar-inverse *:focus { outline: 0; } -@media (max-width: 767px) { - .navbar-inverse { background:rgba(0,0,0,.9); } -} - -.navbar-inverse .navbar-nav > li > a, -.navbar-inverse .navbar-nav > .open ul > a { color:rgba(255, 255, 255, .4); } - -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { color: #fff; background:none ; } -.navbar-inverse .navbar-nav > .open > a{ background:none; color:white; } - -.navbar-inverse .navbar-nav>li>a:hover, -.navbar-inverse .navbar-nav>li>a:focus, -.navbar-inverse .navbar-nav>.open>a:hover, -.navbar-inverse .navbar-nav>.open>a:focus { background:none; color:white; } - -.navbar-inverse .navbar-nav > .active > a { background:none; color:white; } - -.navbar-inverse .navbar-brand { font-family: "Open sans", helvetica, arial; font-size: 24px; color:white; padding:0 0 0 15px; margin:12px 0 0 0; } - .navbar-inverse .navbar-brand img { margin-top:-20px;} - -.navbar-nav .dropdown-menu { - left:-5px; - font-size: 13px; - background-color: rgba(0, 0, 0, .7); - border: 0px none; - -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} -.navbar-nav .dropdown-menu > li > a { color:rgba(255, 255, 255, .7); padding:7px 20px; } - .navbar-nav .dropdown-menu > li > a:hover, - .navbar-nav .dropdown-menu > li > a:focus, - .navbar-nav .dropdown-menu > .active > a:hover{ background: rgba(255, 255, 255, .1); color:white; } - -.navbar-nav .dropdown-menu > .active > a, -.navbar-nav .dropdown-menu > .active > a:focus { background: none; color:#fff; } - -.navbar-nav .btn { border:1px solid rgba(255, 255, 255, .2); margin-left:5px; margin-top:5px; padding-top:10px; padding-bottom:10px; } - -.navbar-nav a.btn:focus, -.navbar-nav a.btn:hover { border:1px solid rgba(255,255,255,.6); } - -.navbar-collapse { border:0 none; border-top:0 none; box-shadow: none; } -@media (max-width: 767px) { - .navbar-collapse ul { text-align: center; width:100%; padding-bottom:10px; } - .navbar-collapse ul .btn{ max-width:50%; margin:0 auto; } -} - -.navbar-static-top, -.navbar-fixed-top, -.navbar-fixed-bottom { border-radius: 0; } - - -/* Buttons */ - -.btn-default, .btn-primary, .btn-success, .btn-action -.btn-info, .btn-warning, .btn-danger { - text-shadow: 0 2px 1px rgba(0, 0, 0, .2); -} - -.btn { padding: 10px 40px; font-weight: bold; border:0 none; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } -.btn-lg { padding: 15px 65px; font-size: 14px; font-weight:bold; } -.btn-default { text-shadow: none; background:transparent; color:rgba(50,50,50,.5); -webkit-box-shadow:inset 0px 0px 0px 3px rgba(50,50,50,.5); -moz-box-shadow:inset 0px 0px 0px 3px rgba(50,50,50,.5); box-shadow:inset 0px 0px 0px 3px rgba(50,50,50,.5); } - .btn-default:hover, - .btn-default:focus { color:rgba(50,50,50,.8); -webkit-box-shadow:inset 0px 0px 0px 3px rgba(50,50,50,.8); -moz-box-shadow:inset 0px 0px 0px 3px rgba(50,50,50,.8); box-shadow:inset 0px 0px 0px 3px rgba(50,50,50,.8); background: transparent; } - .btn-default:active, - .btn-default.active { color:#333; -webkit-box-shadow:inset 0px 0px 0px 3px #333; -moz-box-shadow:inset 0px 0px 0px 3px #333; box-shadow:inset 0px 0px 0px 3px #333; background: transparent; } - -.btn-action, -.btn-primary { color:#FFEFD7; background-image: -webkit-linear-gradient(top, #FF9B22 0%, #FF8C00 100%); background-image: linear-gradient(to bottom, #FF9B22 0%, #FF8C00 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFF9B22', endColorstr='#ffFF8C00', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border:0 none; } - .btn-action:hover, - .btn-action:focus { color:#fff; background: #FF9B22; } - .btn-action:active { background: #FF8C00; } - - -/* Jumbotron */ - -.jumbotron { color: inherit; background-color: #F7F5F4; padding-top:30px; padding-bottom:30px; margin-bottom:0; } -.container .jumbotron { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; padding-left:40px; padding-right:40px; } - .jumbotron p { font-size:inherit; } - .jumbotron h2, .jumbotron h3, .jumbotron h4, - .jumbotron h5, .jumbotron h6 { line-height: 1.3em; } - -/* Images */ - -.img-rounded { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } diff --git a/getfedora.org/static/css/bootstrap.css b/getfedora.org/static/css/bootstrap.css deleted file mode 100644 index 6f1717d..0000000 --- a/getfedora.org/static/css/bootstrap.css +++ /dev/null @@ -1,4503 +0,0 @@ -/*! - * Bootstrap v3.0.3 (http://getbootstrap.com) - * Copyright 2013 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ - -article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { - display: block; -} -audio, canvas, video { - display: inline-block; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], template { - display: none; -} -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%} -body { - margin: 0; -} -a { - background: 0 0; -} -a:focus { - outline: thin dotted; -} -a:active, a:hover { - outline: 0; -} -h1 { - font-size: 2em; - margin: .67em 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, strong { - font-weight: 700; -} -dfn { - font-style: italic; -} -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} -mark { - background: #ff0; - color: #000; -} -code, kbd, pre, samp { - font-family: monospace, serif; - font-size: 1em; -} -pre { - white-space: pre-wrap; -} -q { - quotes: "\201C" "\201D" "\2018" "\2019"} -small { - font-size: 80%} -sub, sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup { - top: -.5em; -} -sub { - bottom: -.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 0; -} -fieldset { - border: 1px solid silver; - margin: 0 2px; - padding: .35em .625em .75em; -} -legend { - border: 0; - padding: 0; -} -button, input, select, textarea { - font-family: inherit; - font-size: 100%; - margin: 0; -} -button, input { - line-height: normal; -} -button, select { - text-transform: none; -} -button, html input[type=button], input[type=reset], input[type=submit] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], html input[disabled] { - cursor: default; -} -input[type=checkbox], input[type=radio] { - box-sizing: border-box; - padding: 0; -} -input[type=search] { - -webkit-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} -button::-moz-focus-inner, input::-moz-focus-inner { - border: 0; - padding: 0; -} -textarea { - overflow: auto; - vertical-align: top; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -@media print { - * { - text-shadow: none!important; - color: #000!important; - background: transparent!important; - box-shadow: none!important; -} -a, a:visited { - text-decoration: underline; -} -a[href]:after { - content: " (" attr(href) ")"} -abbr[title]:after { - content: " (" attr(title) ")"} -a[href^="javascript:"]:after, a[href^="#"]:after { - content: ""} -pre, blockquote { - border: 1px solid #999; - page-break-inside: avoid; -} -thead { - display: table-header-group; -} -tr, img { - page-break-inside: avoid; -} -img { - max-width: 100%!important; -} -@page { - margin: 2cm .5cm; -} -p, h2, h3 { - orphans: 3; - widows: 3; -} -h2, h3 { - page-break-after: avoid; -} -select { - background: #fff!important; -} -.navbar { - display: none; -} -.table td, .table th { - background-color: #fff!important; -} -.btn>.caret, .dropup>.btn>.caret { - border-top-color: #000!important; -} -.label { - border: 1px solid #000; -} -.table { - border-collapse: collapse!important; -} -.table-bordered th, .table-bordered td { - border: 1px solid #ddd!important; -} -}*, :before, :after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 62.5%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.428571429; - color: #333; - background-color: #fff; -} -input, button, select, textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #428bca; - text-decoration: none; -} -a:hover, a:focus { - color: #2a6496; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -img { - vertical-align: middle; -} -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - padding: 4px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} -.img-circle { - border-radius: 50%} -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eee; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { - font-weight: 400; - line-height: 1; - color: #999; -} -h1, .h1, h2, .h2, h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { - font-size: 65%} -h4, .h4, h5, .h5, h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { - font-size: 75%} -h1, .h1 { - font-size: 36px; -} -h2, .h2 { - font-size: 30px; -} -h3, .h3 { - font-size: 24px; -} -h4, .h4 { - font-size: 18px; -} -h5, .h5 { - font-size: 14px; -} -h6, .h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 200; - line-height: 1.4; -} -@media (min-width:768px) { - .lead { - font-size: 21px; -} -}small, .small { - font-size: 85%} -cite { - font-style: normal; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-muted { - color: #999; -} -.text-primary { - color: #428bca; -} -.text-primary:hover { - color: #3071a9; -} -.text-warning { - color: #8a6d3b; -} -.text-warning:hover { - color: #66512c; -} -.text-danger { - color: #a94442; -} -.text-danger:hover { - color: #843534; -} -.text-success { - color: #3c763d; -} -.text-success:hover { - color: #2b542c; -} -.text-info { - color: #31708f; -} -.text-info:hover { - color: #245269; -} -.bg-primary { - color: #fff; - background-color: #428bca; -} -a.bg-primary:hover { - background-color: #3071a9; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover { - background-color: #e4b9b9; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover { - background-color: #afd9ee; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eee; -} -ul, ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, ol ul, ul ol, ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - list-style: none; -} -.list-inline>li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; -} -.list-inline>li:first-child { - padding-left: 0; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, dd { - line-height: 1.428571429; -} -dt { - font-weight: 700; -} -dd { - margin-left: 0; -} -@media (min-width:768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.dl-horizontal dd { - margin-left: 180px; -} -}abbr[title], abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #999; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eee; -} -blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, blockquote small, blockquote .small { - display: block; - font-size: 80%; - line-height: 1.428571429; - color: #999; -} -blockquote footer:before, blockquote small:before, blockquote .small:before { - content: '\2014 \00A0'} -.blockquote-reverse, blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #eee; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { - content: ''} -.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { - content: '\00A0 \2014'} -blockquote:before, blockquote:after { - content: ""} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.428571429; -} -code, kbd, pre, samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - white-space: nowrap; - border-radius: 4px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.428571429; - word-break: break-all; - word-wrap: break-word; - color: #333; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -@media (min-width:768px) { - .container { - width: 750px; -} -}@media (min-width:992px) { - .container { - width: 970px; -} -}@media (min-width:1200px) { - .container { - width: 1170px; -} -}.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.row { - margin-left: -15px; - margin-right: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%} -.col-xs-11 { - width: 91.66666666666666%} -.col-xs-10 { - width: 83.33333333333334%} -.col-xs-9 { - width: 75%} -.col-xs-8 { - width: 66.66666666666666%} -.col-xs-7 { - width: 58.333333333333336%} -.col-xs-6 { - width: 50%} -.col-xs-5 { - width: 41.66666666666667%} -.col-xs-4 { - width: 33.33333333333333%} -.col-xs-3 { - width: 25%} -.col-xs-2 { - width: 16.666666666666664%} -.col-xs-1 { - width: 8.333333333333332%} -.col-xs-pull-12 { - right: 100%} -.col-xs-pull-11 { - right: 91.66666666666666%} -.col-xs-pull-10 { - right: 83.33333333333334%} -.col-xs-pull-9 { - right: 75%} -.col-xs-pull-8 { - right: 66.66666666666666%} -.col-xs-pull-7 { - right: 58.333333333333336%} -.col-xs-pull-6 { - right: 50%} -.col-xs-pull-5 { - right: 41.66666666666667%} -.col-xs-pull-4 { - right: 33.33333333333333%} -.col-xs-pull-3 { - right: 25%} -.col-xs-pull-2 { - right: 16.666666666666664%} -.col-xs-pull-1 { - right: 8.333333333333332%} -.col-xs-pull-0 { - right: 0; -} -.col-xs-push-12 { - left: 100%} -.col-xs-push-11 { - left: 91.66666666666666%} -.col-xs-push-10 { - left: 83.33333333333334%} -.col-xs-push-9 { - left: 75%} -.col-xs-push-8 { - left: 66.66666666666666%} -.col-xs-push-7 { - left: 58.333333333333336%} -.col-xs-push-6 { - left: 50%} -.col-xs-push-5 { - left: 41.66666666666667%} -.col-xs-push-4 { - left: 33.33333333333333%} -.col-xs-push-3 { - left: 25%} -.col-xs-push-2 { - left: 16.666666666666664%} -.col-xs-push-1 { - left: 8.333333333333332%} -.col-xs-push-0 { - left: 0; -} -.col-xs-offset-12 { - margin-left: 100%} -.col-xs-offset-11 { - margin-left: 91.66666666666666%} -.col-xs-offset-10 { - margin-left: 83.33333333333334%} -.col-xs-offset-9 { - margin-left: 75%} -.col-xs-offset-8 { - margin-left: 66.66666666666666%} -.col-xs-offset-7 { - margin-left: 58.333333333333336%} -.col-xs-offset-6 { - margin-left: 50%} -.col-xs-offset-5 { - margin-left: 41.66666666666667%} -.col-xs-offset-4 { - margin-left: 33.33333333333333%} -.col-xs-offset-3 { - margin-left: 25%} -.col-xs-offset-2 { - margin-left: 16.666666666666664%} -.col-xs-offset-1 { - margin-left: 8.333333333333332%} -.col-xs-offset-0 { - margin-left: 0; -} -@media (min-width:768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; -} -.col-sm-12 { - width: 100%} -.col-sm-11 { - width: 91.66666666666666%} -.col-sm-10 { - width: 83.33333333333334%} -.col-sm-9 { - width: 75%} -.col-sm-8 { - width: 66.66666666666666%} -.col-sm-7 { - width: 58.333333333333336%} -.col-sm-6 { - width: 50%} -.col-sm-5 { - width: 41.66666666666667%} -.col-sm-4 { - width: 33.33333333333333%} -.col-sm-3 { - width: 25%} -.col-sm-2 { - width: 16.666666666666664%} -.col-sm-1 { - width: 8.333333333333332%} -.col-sm-pull-12 { - right: 100%} -.col-sm-pull-11 { - right: 91.66666666666666%} -.col-sm-pull-10 { - right: 83.33333333333334%} -.col-sm-pull-9 { - right: 75%} -.col-sm-pull-8 { - right: 66.66666666666666%} -.col-sm-pull-7 { - right: 58.333333333333336%} -.col-sm-pull-6 { - right: 50%} -.col-sm-pull-5 { - right: 41.66666666666667%} -.col-sm-pull-4 { - right: 33.33333333333333%} -.col-sm-pull-3 { - right: 25%} -.col-sm-pull-2 { - right: 16.666666666666664%} -.col-sm-pull-1 { - right: 8.333333333333332%} -.col-sm-pull-0 { - right: 0; -} -.col-sm-push-12 { - left: 100%} -.col-sm-push-11 { - left: 91.66666666666666%} -.col-sm-push-10 { - left: 83.33333333333334%} -.col-sm-push-9 { - left: 75%} -.col-sm-push-8 { - left: 66.66666666666666%} -.col-sm-push-7 { - left: 58.333333333333336%} -.col-sm-push-6 { - left: 50%} -.col-sm-push-5 { - left: 41.66666666666667%} -.col-sm-push-4 { - left: 33.33333333333333%} -.col-sm-push-3 { - left: 25%} -.col-sm-push-2 { - left: 16.666666666666664%} -.col-sm-push-1 { - left: 8.333333333333332%} -.col-sm-push-0 { - left: 0; -} -.col-sm-offset-12 { - margin-left: 100%} -.col-sm-offset-11 { - margin-left: 91.66666666666666%} -.col-sm-offset-10 { - margin-left: 83.33333333333334%} -.col-sm-offset-9 { - margin-left: 75%} -.col-sm-offset-8 { - margin-left: 66.66666666666666%} -.col-sm-offset-7 { - margin-left: 58.333333333333336%} -.col-sm-offset-6 { - margin-left: 50%} -.col-sm-offset-5 { - margin-left: 41.66666666666667%} -.col-sm-offset-4 { - margin-left: 33.33333333333333%} -.col-sm-offset-3 { - margin-left: 25%} -.col-sm-offset-2 { - margin-left: 16.666666666666664%} -.col-sm-offset-1 { - margin-left: 8.333333333333332%} -.col-sm-offset-0 { - margin-left: 0; -} -}@media (min-width:992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; -} -.col-md-12 { - width: 100%} -.col-md-11 { - width: 91.66666666666666%} -.col-md-10 { - width: 83.33333333333334%} -.col-md-9 { - width: 75%} -.col-md-8 { - width: 66.66666666666666%} -.col-md-7 { - width: 58.333333333333336%} -.col-md-6 { - width: 50%} -.col-md-5 { - width: 41.66666666666667%} -.col-md-4 { - width: 33.33333333333333%} -.col-md-3 { - width: 25%} -.col-md-2 { - width: 16.666666666666664%} -.col-md-1 { - width: 8.333333333333332%} -.col-md-pull-12 { - right: 100%} -.col-md-pull-11 { - right: 91.66666666666666%} -.col-md-pull-10 { - right: 83.33333333333334%} -.col-md-pull-9 { - right: 75%} -.col-md-pull-8 { - right: 66.66666666666666%} -.col-md-pull-7 { - right: 58.333333333333336%} -.col-md-pull-6 { - right: 50%} -.col-md-pull-5 { - right: 41.66666666666667%} -.col-md-pull-4 { - right: 33.33333333333333%} -.col-md-pull-3 { - right: 25%} -.col-md-pull-2 { - right: 16.666666666666664%} -.col-md-pull-1 { - right: 8.333333333333332%} -.col-md-pull-0 { - right: 0; -} -.col-md-push-12 { - left: 100%} -.col-md-push-11 { - left: 91.66666666666666%} -.col-md-push-10 { - left: 83.33333333333334%} -.col-md-push-9 { - left: 75%} -.col-md-push-8 { - left: 66.66666666666666%} -.col-md-push-7 { - left: 58.333333333333336%} -.col-md-push-6 { - left: 50%} -.col-md-push-5 { - left: 41.66666666666667%} -.col-md-push-4 { - left: 33.33333333333333%} -.col-md-push-3 { - left: 25%} -.col-md-push-2 { - left: 16.666666666666664%} -.col-md-push-1 { - left: 8.333333333333332%} -.col-md-push-0 { - left: 0; -} -.col-md-offset-12 { - margin-left: 100%} -.col-md-offset-11 { - margin-left: 91.66666666666666%} -.col-md-offset-10 { - margin-left: 83.33333333333334%} -.col-md-offset-9 { - margin-left: 75%} -.col-md-offset-8 { - margin-left: 66.66666666666666%} -.col-md-offset-7 { - margin-left: 58.333333333333336%} -.col-md-offset-6 { - margin-left: 50%} -.col-md-offset-5 { - margin-left: 41.66666666666667%} -.col-md-offset-4 { - margin-left: 33.33333333333333%} -.col-md-offset-3 { - margin-left: 25%} -.col-md-offset-2 { - margin-left: 16.666666666666664%} -.col-md-offset-1 { - margin-left: 8.333333333333332%} -.col-md-offset-0 { - margin-left: 0; -} -}@media (min-width:1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; -} -.col-lg-12 { - width: 100%} -.col-lg-11 { - width: 91.66666666666666%} -.col-lg-10 { - width: 83.33333333333334%} -.col-lg-9 { - width: 75%} -.col-lg-8 { - width: 66.66666666666666%} -.col-lg-7 { - width: 58.333333333333336%} -.col-lg-6 { - width: 50%} -.col-lg-5 { - width: 41.66666666666667%} -.col-lg-4 { - width: 33.33333333333333%} -.col-lg-3 { - width: 25%} -.col-lg-2 { - width: 16.666666666666664%} -.col-lg-1 { - width: 8.333333333333332%} -.col-lg-pull-12 { - right: 100%} -.col-lg-pull-11 { - right: 91.66666666666666%} -.col-lg-pull-10 { - right: 83.33333333333334%} -.col-lg-pull-9 { - right: 75%} -.col-lg-pull-8 { - right: 66.66666666666666%} -.col-lg-pull-7 { - right: 58.333333333333336%} -.col-lg-pull-6 { - right: 50%} -.col-lg-pull-5 { - right: 41.66666666666667%} -.col-lg-pull-4 { - right: 33.33333333333333%} -.col-lg-pull-3 { - right: 25%} -.col-lg-pull-2 { - right: 16.666666666666664%} -.col-lg-pull-1 { - right: 8.333333333333332%} -.col-lg-pull-0 { - right: 0; -} -.col-lg-push-12 { - left: 100%} -.col-lg-push-11 { - left: 91.66666666666666%} -.col-lg-push-10 { - left: 83.33333333333334%} -.col-lg-push-9 { - left: 75%} -.col-lg-push-8 { - left: 66.66666666666666%} -.col-lg-push-7 { - left: 58.333333333333336%} -.col-lg-push-6 { - left: 50%} -.col-lg-push-5 { - left: 41.66666666666667%} -.col-lg-push-4 { - left: 33.33333333333333%} -.col-lg-push-3 { - left: 25%} -.col-lg-push-2 { - left: 16.666666666666664%} -.col-lg-push-1 { - left: 8.333333333333332%} -.col-lg-push-0 { - left: 0; -} -.col-lg-offset-12 { - margin-left: 100%} -.col-lg-offset-11 { - margin-left: 91.66666666666666%} -.col-lg-offset-10 { - margin-left: 83.33333333333334%} -.col-lg-offset-9 { - margin-left: 75%} -.col-lg-offset-8 { - margin-left: 66.66666666666666%} -.col-lg-offset-7 { - margin-left: 58.333333333333336%} -.col-lg-offset-6 { - margin-left: 50%} -.col-lg-offset-5 { - margin-left: 41.66666666666667%} -.col-lg-offset-4 { - margin-left: 33.33333333333333%} -.col-lg-offset-3 { - margin-left: 25%} -.col-lg-offset-2 { - margin-left: 16.666666666666664%} -.col-lg-offset-1 { - margin-left: 8.333333333333332%} -.col-lg-offset-0 { - margin-left: 0; -} -}table { - max-width: 100%; - background-color: transparent; -} -th { - text-align: left; -} -.table { - width: 100%; - margin-bottom: 20px; -} -.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { - padding: 8px; - line-height: 1.428571429; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table>thead>tr>th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td { - border-top: 0; -} -.table>tbody+tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} -.table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td { - padding: 5px; -} -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td { - border: 1px solid #ddd; -} -.table-bordered>thead>tr>th, .table-bordered>thead>tr>td { - border-bottom-width: 2px; -} -.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th { - background-color: #f9f9f9; -} -.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th { - background-color: #f5f5f5; -} -table col[class*=col-] { - position: static; - float: none; - display: table-column; -} -table td[class*=col-], table th[class*=col-] { - position: static; - float: none; - display: table-cell; -} -.table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th { - background-color: #f5f5f5; -} -.table-hover>tbody>tr>td.active:hover, .table-hover>tbody>tr>th.active:hover, .table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr.active:hover>th { - background-color: #e8e8e8; -} -.table>thead>tr>td.success, .table>tbody>tr>td.success, .table>tfoot>tr>td.success, .table>thead>tr>th.success, .table>tbody>tr>th.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>tbody>tr.success>td, .table>tfoot>tr.success>td, .table>thead>tr.success>th, .table>tbody>tr.success>th, .table>tfoot>tr.success>th { - background-color: #dff0d8; -} -.table-hover>tbody>tr>td.success:hover, .table-hover>tbody>tr>th.success:hover, .table-hover>tbody>tr.success:hover>td, .table-hover>tbody>tr.success:hover>th { - background-color: #d0e9c6; -} -.table>thead>tr>td.warning, .table>tbody>tr>td.warning, .table>tfoot>tr>td.warning, .table>thead>tr>th.warning, .table>tbody>tr>th.warning, .table>tfoot>tr>th.warning, .table>thead>tr.warning>td, .table>tbody>tr.warning>td, .table>tfoot>tr.warning>td, .table>thead>tr.warning>th, .table>tbody>tr.warning>th, .table>tfoot>tr.warning>th { - background-color: #fcf8e3; -} -.table-hover>tbody>tr>td.warning:hover, .table-hover>tbody>tr>th.warning:hover, .table-hover>tbody>tr.warning:hover>td, .table-hover>tbody>tr.warning:hover>th { - background-color: #faf2cc; -} -.table>thead>tr>td.danger, .table>tbody>tr>td.danger, .table>tfoot>tr>td.danger, .table>thead>tr>th.danger, .table>tbody>tr>th.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>tbody>tr.danger>td, .table>tfoot>tr.danger>td, .table>thead>tr.danger>th, .table>tbody>tr.danger>th, .table>tfoot>tr.danger>th { - background-color: #f2dede; -} -.table-hover>tbody>tr>td.danger:hover, .table-hover>tbody>tr>th.danger:hover, .table-hover>tbody>tr.danger:hover>td, .table-hover>tbody>tr.danger:hover>th { - background-color: #ebcccc; -} -.table>thead>tr>td.info, .table>tbody>tr>td.info, .table>tfoot>tr>td.info, .table>thead>tr>th.info, .table>tbody>tr>th.info, .table>tfoot>tr>th.info, .table>thead>tr.info>td, .table>tbody>tr.info>td, .table>tfoot>tr.info>td, .table>thead>tr.info>th, .table>tbody>tr.info>th, .table>tfoot>tr.info>th { - background-color: #d9edf7; -} -.table-hover>tbody>tr>td.info:hover, .table-hover>tbody>tr>th.info:hover, .table-hover>tbody>tr.info:hover>td, .table-hover>tbody>tr.info:hover>th { - background-color: #c4e3f3; -} -@media (max-width:767px) { -.table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - overflow-x: scroll; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - -webkit-overflow-scrolling: touch; -} -.table-responsive>.table { - margin-bottom: 0; -} -.table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td { - white-space: nowrap; -} -.table-responsive>.table-bordered { - border: 0; -} -.table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left: 0; -} -.table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right: 0; -} -.table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom: 0; -} -}fieldset { - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - margin-bottom: 5px; - font-weight: 700; -} -input[type=search] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type=radio], input[type=checkbox] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type=file] { - display: block; -} -select[multiple], select[size] { - height: auto; -} -select optgroup { - font-size: inherit; - font-style: inherit; - font-family: inherit; -} -input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button { - height: auto; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.428571429; - color: #555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6); -} -.form-control:-moz-placeholder { - color: #999; -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - cursor: not-allowed; - background-color: #eee; -} -textarea.form-control { - height: auto; -} -input[type=date] { - line-height: 34px; -} -.form-group { - margin-bottom: 15px; -} -.radio, .checkbox { - display: block; - min-height: 20px; - margin-top: 10px; - margin-bottom: 10px; - padding-left: 20px; -} -.radio label, .checkbox label { - display: inline; - font-weight: 400; - cursor: pointer; -} -.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] { - float: left; - margin-left: -20px; -} -.radio+.radio, .checkbox+.checkbox { - margin-top: -5px; -} -.radio-inline, .checkbox-inline { - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: 400; - cursor: pointer; -} -.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type=radio][disabled], input[type=checkbox][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type=radio], fieldset[disabled] input[type=checkbox], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm { - height: 30px; - line-height: 30px; -} -textarea.input-sm { - height: auto; -} -.input-lg { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -select.input-lg { - height: 46px; - line-height: 46px; -} -textarea.input-lg { - height: auto; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.has-feedback .form-control-feedback { - position: absolute; - top: 25px; - right: 0; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; -} -.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - border-color: #8a6d3b; - background-color: #fcf8e3; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - border-color: #a94442; - background-color: #f2dede; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - border-color: #3c763d; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.form-control-static { - margin-bottom: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width:768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; -} -.form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; -} -.form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; -} -.form-inline .radio, .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - padding-left: 0; - vertical-align: middle; -} -.form-inline .radio input[type=radio], .form-inline .checkbox input[type=checkbox] { - float: none; - margin-left: 0; -} -.form-inline .has-feedback .form-control-feedback { - top: 0; -} -}.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 7px; -} -.form-horizontal .radio, .form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -.form-horizontal .form-control-static { - padding-top: 7px; -} -@media (min-width:768px) { - .form-horizontal .control-label { - text-align: right; -} -}.form-horizontal .has-feedback .form-control-feedback { - top: 0; - right: 15px; -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: 400; - text-align: center; - vertical-align: middle; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; -} -.btn:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus { - color: #333; - text-decoration: none; -} -.btn:active, .btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - opacity: .65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { - color: #333; - background-color: #ebebeb; - border-color: #adadad; -} -.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} -.btn-primary { - color: #fff; - background-color: #428bca; - border-color: #357ebd; -} -.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { - color: #fff; - background-color: #3276b1; - border-color: #285e8e; -} -.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { - background-color: #428bca; - border-color: #357ebd; -} -.btn-primary .badge { - color: #428bca; - background-color: #fff; -} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { - color: #fff; - background-color: #47a447; - border-color: #398439; -} -.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { - color: #fff; - background-color: #ed9c28; - border-color: #d58512; -} -.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { - color: #fff; - background-color: #d2322d; - border-color: #ac2925; -} -.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { - color: #fff; - background-color: #39b3d7; - border-color: #269abc; -} -.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} -.btn-link { - color: #428bca; - font-weight: 400; - cursor: pointer; - border-radius: 0; -} -.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; -} -.btn-link:hover, .btn-link:focus { - color: #2a6496; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { - color: #999; - text-decoration: none; -} -.btn-lg { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -.btn-sm { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; - padding-left: 0; - padding-right: 0; -} -.btn-block+.btn-block { - margin-top: 5px; -} -input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block { - width: 100%} -.fade { - opacity: 0; - -webkit-transition: opacity .15s linear; - transition: opacity .15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition: height .35s ease; - transition: height .35s ease; -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url(../fonts/glyphicons-halflings-regular.eot); - src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: 400; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\2a"} -.glyphicon-plus:before { - content: "\2b"} -.glyphicon-euro:before { - content: "\20ac"} -.glyphicon-minus:before { - content: "\2212"} -.glyphicon-cloud:before { - content: "\2601"} -.glyphicon-envelope:before { - content: "\2709"} -.glyphicon-pencil:before { - content: "\270f"} -.glyphicon-glass:before { - content: "\e001"} -.glyphicon-music:before { - content: "\e002"} -.glyphicon-search:before { - content: "\e003"} -.glyphicon-heart:before { - content: "\e005"} -.glyphicon-star:before { - content: "\e006"} -.glyphicon-star-empty:before { - content: "\e007"} -.glyphicon-user:before { - content: "\e008"} -.glyphicon-film:before { - content: "\e009"} -.glyphicon-th-large:before { - content: "\e010"} -.glyphicon-th:before { - content: "\e011"} -.glyphicon-th-list:before { - content: "\e012"} -.glyphicon-ok:before { - content: "\e013"} -.glyphicon-remove:before { - content: "\e014"} -.glyphicon-zoom-in:before { - content: "\e015"} -.glyphicon-zoom-out:before { - content: "\e016"} -.glyphicon-off:before { - content: "\e017"} -.glyphicon-signal:before { - content: "\e018"} -.glyphicon-cog:before { - content: "\e019"} -.glyphicon-trash:before { - content: "\e020"} -.glyphicon-home:before { - content: "\e021"} -.glyphicon-file:before { - content: "\e022"} -.glyphicon-time:before { - content: "\e023"} -.glyphicon-road:before { - content: "\e024"} -.glyphicon-download-alt:before { - content: "\e025"} -.glyphicon-download:before { - content: "\e026"} -.glyphicon-upload:before { - content: "\e027"} -.glyphicon-inbox:before { - content: "\e028"} -.glyphicon-play-circle:before { - content: "\e029"} -.glyphicon-repeat:before { - content: "\e030"} -.glyphicon-refresh:before { - content: "\e031"} -.glyphicon-list-alt:before { - content: "\e032"} -.glyphicon-lock:before { - content: "\e033"} -.glyphicon-flag:before { - content: "\e034"} -.glyphicon-headphones:before { - content: "\e035"} -.glyphicon-volume-off:before { - content: "\e036"} -.glyphicon-volume-down:before { - content: "\e037"} -.glyphicon-volume-up:before { - content: "\e038"} -.glyphicon-qrcode:before { - content: "\e039"} -.glyphicon-barcode:before { - content: "\e040"} -.glyphicon-tag:before { - content: "\e041"} -.glyphicon-tags:before { - content: "\e042"} -.glyphicon-book:before { - content: "\e043"} -.glyphicon-bookmark:before { - content: "\e044"} -.glyphicon-print:before { - content: "\e045"} -.glyphicon-camera:before { - content: "\e046"} -.glyphicon-font:before { - content: "\e047"} -.glyphicon-bold:before { - content: "\e048"} -.glyphicon-italic:before { - content: "\e049"} -.glyphicon-text-height:before { - content: "\e050"} -.glyphicon-text-width:before { - content: "\e051"} -.glyphicon-align-left:before { - content: "\e052"} -.glyphicon-align-center:before { - content: "\e053"} -.glyphicon-align-right:before { - content: "\e054"} -.glyphicon-align-justify:before { - content: "\e055"} -.glyphicon-list:before { - content: "\e056"} -.glyphicon-indent-left:before { - content: "\e057"} -.glyphicon-indent-right:before { - content: "\e058"} -.glyphicon-facetime-video:before { - content: "\e059"} -.glyphicon-picture:before { - content: "\e060"} -.glyphicon-map-marker:before { - content: "\e062"} -.glyphicon-adjust:before { - content: "\e063"} -.glyphicon-tint:before { - content: "\e064"} -.glyphicon-edit:before { - content: "\e065"} -.glyphicon-share:before { - content: "\e066"} -.glyphicon-check:before { - content: "\e067"} -.glyphicon-move:before { - content: "\e068"} -.glyphicon-step-backward:before { - content: "\e069"} -.glyphicon-fast-backward:before { - content: "\e070"} -.glyphicon-backward:before { - content: "\e071"} -.glyphicon-play:before { - content: "\e072"} -.glyphicon-pause:before { - content: "\e073"} -.glyphicon-stop:before { - content: "\e074"} -.glyphicon-forward:before { - content: "\e075"} -.glyphicon-fast-forward:before { - content: "\e076"} -.glyphicon-step-forward:before { - content: "\e077"} -.glyphicon-eject:before { - content: "\e078"} -.glyphicon-chevron-left:before { - content: "\e079"} -.glyphicon-chevron-right:before { - content: "\e080"} -.glyphicon-plus-sign:before { - content: "\e081"} -.glyphicon-minus-sign:before { - content: "\e082"} -.glyphicon-remove-sign:before { - content: "\e083"} -.glyphicon-ok-sign:before { - content: "\e084"} -.glyphicon-question-sign:before { - content: "\e085"} -.glyphicon-info-sign:before { - content: "\e086"} -.glyphicon-screenshot:before { - content: "\e087"} -.glyphicon-remove-circle:before { - content: "\e088"} -.glyphicon-ok-circle:before { - content: "\e089"} -.glyphicon-ban-circle:before { - content: "\e090"} -.glyphicon-arrow-left:before { - content: "\e091"} -.glyphicon-arrow-right:before { - content: "\e092"} -.glyphicon-arrow-up:before { - content: "\e093"} -.glyphicon-arrow-down:before { - content: "\e094"} -.glyphicon-share-alt:before { - content: "\e095"} -.glyphicon-resize-full:before { - content: "\e096"} -.glyphicon-resize-small:before { - content: "\e097"} -.glyphicon-exclamation-sign:before { - content: "\e101"} -.glyphicon-gift:before { - content: "\e102"} -.glyphicon-leaf:before { - content: "\e103"} -.glyphicon-fire:before { - content: "\e104"} -.glyphicon-eye-open:before { - content: "\e105"} -.glyphicon-eye-close:before { - content: "\e106"} -.glyphicon-warning-sign:before { - content: "\e107"} -.glyphicon-plane:before { - content: "\e108"} -.glyphicon-calendar:before { - content: "\e109"} -.glyphicon-random:before { - content: "\e110"} -.glyphicon-comment:before { - content: "\e111"} -.glyphicon-magnet:before { - content: "\e112"} -.glyphicon-chevron-up:before { - content: "\e113"} -.glyphicon-chevron-down:before { - content: "\e114"} -.glyphicon-retweet:before { - content: "\e115"} -.glyphicon-shopping-cart:before { - content: "\e116"} -.glyphicon-folder-close:before { - content: "\e117"} -.glyphicon-folder-open:before { - content: "\e118"} -.glyphicon-resize-vertical:before { - content: "\e119"} -.glyphicon-resize-horizontal:before { - content: "\e120"} -.glyphicon-hdd:before { - content: "\e121"} -.glyphicon-bullhorn:before { - content: "\e122"} -.glyphicon-bell:before { - content: "\e123"} -.glyphicon-certificate:before { - content: "\e124"} -.glyphicon-thumbs-up:before { - content: "\e125"} -.glyphicon-thumbs-down:before { - content: "\e126"} -.glyphicon-hand-right:before { - content: "\e127"} -.glyphicon-hand-left:before { - content: "\e128"} -.glyphicon-hand-up:before { - content: "\e129"} -.glyphicon-hand-down:before { - content: "\e130"} -.glyphicon-circle-arrow-right:before { - content: "\e131"} -.glyphicon-circle-arrow-left:before { - content: "\e132"} -.glyphicon-circle-arrow-up:before { - content: "\e133"} -.glyphicon-circle-arrow-down:before { - content: "\e134"} -.glyphicon-globe:before { - content: "\e135"} -.glyphicon-wrench:before { - content: "\e136"} -.glyphicon-tasks:before { - content: "\e137"} -.glyphicon-filter:before { - content: "\e138"} -.glyphicon-briefcase:before { - content: "\e139"} -.glyphicon-fullscreen:before { - content: "\e140"} -.glyphicon-dashboard:before { - content: "\e141"} -.glyphicon-paperclip:before { - content: "\e142"} -.glyphicon-heart-empty:before { - content: "\e143"} -.glyphicon-link:before { - content: "\e144"} -.glyphicon-phone:before { - content: "\e145"} -.glyphicon-pushpin:before { - content: "\e146"} -.glyphicon-usd:before { - content: "\e148"} -.glyphicon-gbp:before { - content: "\e149"} -.glyphicon-sort:before { - content: "\e150"} -.glyphicon-sort-by-alphabet:before { - content: "\e151"} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"} -.glyphicon-sort-by-order:before { - content: "\e153"} -.glyphicon-sort-by-order-alt:before { - content: "\e154"} -.glyphicon-sort-by-attributes:before { - content: "\e155"} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"} -.glyphicon-unchecked:before { - content: "\e157"} -.glyphicon-expand:before { - content: "\e158"} -.glyphicon-collapse-down:before { - content: "\e159"} -.glyphicon-collapse-up:before { - content: "\e160"} -.glyphicon-log-in:before { - content: "\e161"} -.glyphicon-flash:before { - content: "\e162"} -.glyphicon-log-out:before { - content: "\e163"} -.glyphicon-new-window:before { - content: "\e164"} -.glyphicon-record:before { - content: "\e165"} -.glyphicon-save:before { - content: "\e166"} -.glyphicon-open:before { - content: "\e167"} -.glyphicon-saved:before { - content: "\e168"} -.glyphicon-import:before { - content: "\e169"} -.glyphicon-export:before { - content: "\e170"} -.glyphicon-send:before { - content: "\e171"} -.glyphicon-floppy-disk:before { - content: "\e172"} -.glyphicon-floppy-saved:before { - content: "\e173"} -.glyphicon-floppy-remove:before { - content: "\e174"} -.glyphicon-floppy-save:before { - content: "\e175"} -.glyphicon-floppy-open:before { - content: "\e176"} -.glyphicon-credit-card:before { - content: "\e177"} -.glyphicon-transfer:before { - content: "\e178"} -.glyphicon-cutlery:before { - content: "\e179"} -.glyphicon-header:before { - content: "\e180"} -.glyphicon-compressed:before { - content: "\e181"} -.glyphicon-earphone:before { - content: "\e182"} -.glyphicon-phone-alt:before { - content: "\e183"} -.glyphicon-tower:before { - content: "\e184"} -.glyphicon-stats:before { - content: "\e185"} -.glyphicon-sd-video:before { - content: "\e186"} -.glyphicon-hd-video:before { - content: "\e187"} -.glyphicon-subtitles:before { - content: "\e188"} -.glyphicon-sound-stereo:before { - content: "\e189"} -.glyphicon-sound-dolby:before { - content: "\e190"} -.glyphicon-sound-5-1:before { - content: "\e191"} -.glyphicon-sound-6-1:before { - content: "\e192"} -.glyphicon-sound-7-1:before { - content: "\e193"} -.glyphicon-copyright-mark:before { - content: "\e194"} -.glyphicon-registration-mark:before { - content: "\e195"} -.glyphicon-cloud-download:before { - content: "\e197"} -.glyphicon-cloud-upload:before { - content: "\e198"} -.glyphicon-tree-conifer:before { - content: "\e199"} -.glyphicon-tree-deciduous:before { - content: "\e200"} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px solid; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 14px; - background-color: #fff; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); - box-shadow: 0 6px 12px rgba(0, 0, 0, .175); - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu>li>a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.428571429; - color: #333; - white-space: nowrap; -} -.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { - text-decoration: none; - color: #262626; - background-color: #f5f5f5; -} -.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus { - color: #fff; - text-decoration: none; - outline: 0; - background-color: #428bca; -} -.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { - color: #999; -} -.dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { - text-decoration: none; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); - cursor: not-allowed; -} -.open>.dropdown-menu { - display: block; -} -.open>a { - outline: 0; -} -.dropdown-menu-right { - left: auto; - right: 0; -} -.dropdown-menu-left { - left: 0; - right: auto; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.428571429; - color: #999; -} -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990; -} -.pull-right>.dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, .navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px solid; - content: ""} -.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 1px; -} -@media (min-width:768px) { - .navbar-right .dropdown-menu { - left: auto; - right: 0; -} -.navbar-right .dropdown-menu-left { - left: 0; - right: auto; -} -}.btn-group, .btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group>.btn, .btn-group-vertical>.btn { - position: relative; - float: left; -} -.btn-group>.btn:hover, .btn-group-vertical>.btn:hover, .btn-group>.btn:focus, .btn-group-vertical>.btn:focus, .btn-group>.btn:active, .btn-group-vertical>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn.active { - z-index: 2; -} -.btn-group>.btn:focus, .btn-group-vertical>.btn:focus { - outline: 0; -} -.btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn-group, .btn-toolbar .input-group { - float: left; -} -.btn-toolbar>.btn, .btn-toolbar>.btn-group, .btn-toolbar>.input-group { - margin-left: 5px; -} -.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group>.btn:first-child { - margin-left: 0; -} -.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group>.btn-group { - float: left; -} -.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius: 0; -} -.btn-group>.btn-group:first-child>.btn:last-child, .btn-group>.btn-group:first-child>.dropdown-toggle { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group>.btn-group:last-child>.btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group-xs>.btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-group-sm>.btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-group-lg>.btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -.btn-group>.btn+.dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} -.btn-group>.btn-lg+.dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical>.btn, .btn-group-vertical>.btn-group, .btn-group-vertical>.btn-group>.btn { - display: block; - float: none; - width: 100%; - max-width: 100%} -.btn-group-vertical>.btn-group>.btn { - float: none; -} -.btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical>.btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical>.btn:first-child:not(:last-child) { - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical>.btn:last-child:not(:first-child) { - border-bottom-left-radius: 4px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius: 0; -} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified>.btn, .btn-group-justified>.btn-group { - float: none; - display: table-cell; - width: 1%} -.btn-group-justified>.btn-group .btn { - width: 100%} -[data-toggle=buttons]>.btn>input[type=radio], [data-toggle=buttons]>.btn>input[type=checkbox] { - display: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*=col-] { - float: none; - padding-left: 0; - padding-right: 0; -} -.input-group .form-control { - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn { - height: 46px; - line-height: 46px; -} -textarea.input-group-lg>.form-control, textarea.input-group-lg>.input-group-addon, textarea.input-group-lg>.input-group-btn>.btn { - height: auto; -} -.input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-group-sm>.form-control, select.input-group-sm>.input-group-addon, select.input-group-sm>.input-group-btn>.btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addon, textarea.input-group-sm>.input-group-btn>.btn { - height: auto; -} -.input-group-addon, .input-group-btn, .input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, .input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type=radio], .input-group-addon input[type=checkbox] { - margin-top: 0; -} -.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child>.btn-group:not(:last-child)>.btn { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn>.btn { - position: relative; -} -.input-group-btn>.btn+.btn { - margin-left: -1px; -} -.input-group-btn>.btn:hover, .input-group-btn>.btn:focus, .input-group-btn>.btn:active { - z-index: 2; -} -.input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group { - margin-right: -1px; -} -.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { - margin-left: -1px; -} -.nav { - margin-bottom: 0; - padding-left: 0; - list-style: none; -} -.nav>li { - position: relative; - display: block; -} -.nav>li>a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav>li>a:hover, .nav>li>a:focus { - text-decoration: none; - background-color: #eee; -} -.nav>li.disabled>a { - color: #999; -} -.nav>li.disabled>a:hover, .nav>li.disabled>a:focus { - color: #999; - text-decoration: none; - background-color: transparent; - cursor: not-allowed; -} -.nav .open>a, .nav .open>a:hover, .nav .open>a:focus { - background-color: #eee; - border-color: #428bca; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav>li>a>img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs>li { - float: left; - margin-bottom: -1px; -} -.nav-tabs>li>a { - margin-right: 2px; - line-height: 1.428571429; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs>li>a:hover { - border-color: #eee #eee #ddd; -} -.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { - color: #555; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; - cursor: default; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified>li { - float: none; -} -.nav-tabs.nav-justified>li>a { - text-align: center; - margin-bottom: 5px; -} -.nav-tabs.nav-justified>.dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width:768px) { - .nav-tabs.nav-justified>li { - display: table-cell; - width: 1%} -.nav-tabs.nav-justified>li>a { - margin-bottom: 0; -} -}.nav-tabs.nav-justified>li>a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { - border: 1px solid #ddd; -} -@media (min-width:768px) { - .nav-tabs.nav-justified>li>a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; -} -.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { - border-bottom-color: #fff; -} -}.nav-pills>li { - float: left; -} -.nav-pills>li>a { - border-radius: 4px; -} -.nav-pills>li+li { - margin-left: 2px; -} -.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { - color: #fff; - background-color: #428bca; -} -.nav-stacked>li { - float: none; -} -.nav-stacked>li+li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%} -.nav-justified>li { - float: none; -} -.nav-justified>li>a { - text-align: center; - margin-bottom: 5px; -} -.nav-justified>.dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width:768px) { - .nav-justified>li { - display: table-cell; - width: 1%} -.nav-justified>li>a { - margin-bottom: 0; -} -}.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified>li>a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { - border: 1px solid #ddd; -} -@media (min-width:768px) { - .nav-tabs-justified>li>a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; -} -.nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { - border-bottom-color: #fff; -} -}.tab-content>.tab-pane { - display: none; -} -.tab-content>.active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -@media (min-width:768px) { - .navbar { - border-radius: 4px; -} -}@media (min-width:768px) { - .navbar-header { - float: left; -} -}.navbar-collapse { - max-height: 340px; - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width:768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; -} -.navbar-collapse.collapse { - display: block!important; - height: auto!important; - padding-bottom: 0; - overflow: visible!important; -} -.navbar-collapse.in { - overflow-y: visible; -} -.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-left: 0; - padding-right: 0; -} -}.container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width:768px) { - .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { - margin-right: 0; - margin-left: 0; -} -}.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width:768px) { - .navbar-static-top { - border-radius: 0; -} -}.navbar-fixed-top, .navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width:768px) { - .navbar-fixed-top, .navbar-fixed-bottom { - border-radius: 0; -} -}.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - padding: 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} -.navbar-brand>.glyphicon { - float: left; - margin-top: -2px; - margin-right: 5px; -} -@media (min-width:768px) { - .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { - margin-left: -15px; -} -}.navbar-toggle { - position: relative; - float: right; - margin-right: 15px; - padding: 9px 10px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar+.icon-bar { - margin-top: 4px; -} -@media (min-width:768px) { - .navbar-toggle { - display: none; -} -}.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav>li>a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width:767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; -} -.navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; -} -.navbar-nav .open .dropdown-menu>li>a { - line-height: 20px; -} -.navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus { - background-image: none; -} -}@media (min-width:768px) { - .navbar-nav { - float: left; - margin: 0; -} -.navbar-nav>li { - float: left; -} -.navbar-nav>li>a { - padding-top: 15px; - padding-bottom: 15px; -} -.navbar-nav.navbar-right:last-child { - margin-right: -15px; -} -}@media (min-width:768px) { - .navbar-left { - float: left!important; -} -.navbar-right { - float: right!important; -} -}.navbar-form { - margin-left: -15px; - margin-right: -15px; - padding: 10px 15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); - margin-top: 8px; - margin-bottom: 8px; -} -@media (min-width:768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; -} -.navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; -} -.navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; -} -.navbar-form .radio, .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - padding-left: 0; - vertical-align: middle; -} -.navbar-form .radio input[type=radio], .navbar-form .checkbox input[type=checkbox] { - float: none; - margin-left: 0; -} -.navbar-form .has-feedback .form-control-feedback { - top: 0; -} -}@media (max-width:767px) { - .navbar-form .form-group { - margin-bottom: 5px; -} -}@media (min-width:768px) { - .navbar-form { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - -webkit-box-shadow: none; - box-shadow: none; -} -.navbar-form.navbar-right:last-child { - margin-right: -15px; -} -}.navbar-nav>li>.dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width:768px) { - .navbar-text { - float: left; - margin-left: 15px; - margin-right: 15px; -} -.navbar-text.navbar-right:last-child { - margin-right: 0; -} -}.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav>li>a { - color: #777; -} -.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav>.disabled>a, .navbar-default .navbar-nav>.disabled>a:hover, .navbar-default .navbar-nav>.disabled>a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, .navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { - background-color: #e7e7e7; - color: #555; -} -@media (max-width:767px) { - .navbar-default .navbar-nav .open .dropdown-menu>li>a { - color: #777; -} -.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color: #ccc; - background-color: transparent; -} -}.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-inverse { - background-color: #222; - border-color: #080808; -} -.navbar-inverse .navbar-brand { - color: #999; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #999; -} -.navbar-inverse .navbar-nav>li>a { - color: #999; -} -.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>.active>a:focus { - color: #fff; - background-color: #080808; -} -.navbar-inverse .navbar-nav>.disabled>a, .navbar-inverse .navbar-nav>.disabled>a:hover, .navbar-inverse .navbar-nav>.disabled>a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus { - background-color: #080808; - color: #fff; -} -@media (max-width:767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { - border-color: #080808; -} -.navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a { - color: #999; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { - color: #fff; - background-color: #080808; -} -.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color: #444; - background-color: transparent; -} -}.navbar-inverse .navbar-link { - color: #999; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb>li { - display: inline-block; -} -.breadcrumb>li+li:before { - content: "/\00a0"; - padding: 0 5px; - color: #ccc; -} -.breadcrumb>.active { - color: #999; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination>li { - display: inline; -} -.pagination>li>a, .pagination>li>span { - position: relative; - float: left; - padding: 6px 12px; - line-height: 1.428571429; - text-decoration: none; - color: #428bca; - background-color: #fff; - border: 1px solid #ddd; - margin-left: -1px; -} -.pagination>li:first-child>a, .pagination>li:first-child>span { - margin-left: 0; - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; -} -.pagination>li:last-child>a, .pagination>li:last-child>span { - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; -} -.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { - color: #2a6496; - background-color: #eee; - border-color: #ddd; -} -.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { - z-index: 2; - color: #fff; - background-color: #428bca; - border-color: #428bca; - cursor: default; -} -.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus { - color: #999; - background-color: #fff; - border-color: #ddd; - cursor: not-allowed; -} -.pagination-lg>li>a, .pagination-lg>li>span { - padding: 10px 16px; - font-size: 18px; -} -.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span { - border-bottom-left-radius: 6px; - border-top-left-radius: 6px; -} -.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span { - border-bottom-right-radius: 6px; - border-top-right-radius: 6px; -} -.pagination-sm>li>a, .pagination-sm>li>span { - padding: 5px 10px; - font-size: 12px; -} -.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span { - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} -.pager { - padding-left: 0; - margin: 20px 0; - list-style: none; - text-align: center; -} -.pager li { - display: inline; -} -.pager li>a, .pager li>span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li>a:hover, .pager li>a:focus { - text-decoration: none; - background-color: #eee; -} -.pager .next>a, .pager .next>span { - float: right; -} -.pager .previous>a, .pager .previous>span { - float: left; -} -.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span { - color: #999; - background-color: #fff; - cursor: not-allowed; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -.label[href]:hover, .label[href]:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #999; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: gray; -} -.label-primary { - background-color: #428bca; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #3071a9; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: 700; - color: #fff; - line-height: 1; - vertical-align: baseline; - white-space: nowrap; - text-align: center; - background-color: #999; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -a.list-group-item.active>.badge, .nav-pills>.active>a>.badge { - color: #428bca; - background-color: #fff; -} -.nav-pills>li>a>.badge { - margin-left: 3px; -} -.jumbotron { - padding: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eee; -} -.jumbotron h1, .jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.container .jumbotron { - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%} -@media screen and (min-width:768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; -} -.container .jumbotron { - padding-left: 60px; - padding-right: 60px; -} -.jumbotron h1, .jumbotron .h1 { - font-size: 63px; -} -}.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.thumbnail>img, .thumbnail a>img { - display: block; - max-width: 100%; - height: auto; - margin-left: auto; - margin-right: auto; -} -a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { - border-color: #428bca; -} -.thumbnail .caption { - padding: 9px; - color: #333; -} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: 700; -} -.alert>p, .alert>ul { - margin-bottom: 0; -} -.alert>p+p { - margin-top: 5px; -} -.alert-dismissable { - padding-right: 35px; -} -.alert-dismissable .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #3c763d; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #31708f; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - background-color: #fcf8e3; - border-color: #faebcc; - color: #8a6d3b; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - background-color: #f2dede; - border-color: #ebccd1; - color: #a94442; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; -} -to { - background-position: 0 0; -} -}@keyframes progress-bar-stripes { - from { - background-position: 40px 0; -} -to { - background-position: 0 0; -} -}.progress { - overflow: hidden; - height: 20px; - margin-bottom: 20px; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -} -.progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #428bca; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - -webkit-transition: width .6s ease; - transition: width .6s ease; -} -.progress-striped .progress-bar { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} -.progress.active .progress-bar { - -webkit-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.media, .media-body { - overflow: hidden; - zoom: 1; -} -.media, .media .media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media-object { - display: block; -} -.media-heading { - margin: 0 0 5px; -} -.media>.pull-left { - margin-right: 10px; -} -.media>.pull-right { - margin-left: 10px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - margin-bottom: 20px; - padding-left: 0; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-right-radius: 4px; - border-top-left-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.list-group-item>.badge { - float: right; -} -.list-group-item>.badge+.badge { - margin-right: 5px; -} -a.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, a.list-group-item:focus { - text-decoration: none; - background-color: #f5f5f5; -} -a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #428bca; - border-color: #428bca; -} -a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading { - color: inherit; -} -a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text { - color: #e1edf7; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, a.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, a.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, a.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, a.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: 0 1px 1px rgba(0, 0, 0, .05); -} -.panel-body { - padding: 15px; -} -.panel>.list-group { - margin-bottom: 0; -} -.panel>.list-group .list-group-item { - border-width: 1px 0; -} -.panel>.list-group .list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.panel>.list-group .list-group-item:last-child { - border-bottom: 0; -} -.panel-heading+.list-group .list-group-item:first-child { - border-top-width: 0; -} -.panel>.table, .panel>.table-responsive>.table { - margin-bottom: 0; -} -.panel>.table>tbody:last-child>tr:last-child td:first-child, .panel>.table-responsive>.table>tbody:last-child>tr:last-child td:first-child, .panel>.table>tfoot:last-child>tr:last-child td:first-child, .panel>.table-responsive>.table>tfoot:last-child>tr:last-child td:first-child, .panel>.table>tbody:last-child>tr:last-child th:first-child, .panel>.table-responsive>.table>tbody:last-child>tr:last-child th:first-child, .panel>.table>tfoot:last-child>tr:last-child th:first-child, .panel>.table-responsive>.table>tfoot:last-child>tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel>.table>tbody:last-child>tr:last-child td:last-child, .panel>.table-responsive>.table>tbody:last-child>tr:last-child td:last-child, .panel>.table>tfoot:last-child>tr:last-child td:last-child, .panel>.table-responsive>.table>tfoot:last-child>tr:last-child td:last-child, .panel>.table>tbody:last-child>tr:last-child th:last-child, .panel>.table-responsive>.table>tbody:last-child>tr:last-child th:last-child, .panel>.table>tfoot:last-child>tr:last-child th:last-child, .panel>.table-responsive>.table>tfoot:last-child>tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel>.panel-body+.table, .panel>.panel-body+.table-responsive { - border-top: 1px solid #ddd; -} -.panel>.table>tbody:first-child th, .panel>.table>tbody:first-child td { - border-top: 0; -} -.panel>.table-bordered, .panel>.table-responsive>.table-bordered { - border: 0; -} -.panel>.table-bordered>thead>tr>th:first-child, .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, .panel>.table-bordered>tbody>tr>th:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, .panel>.table-bordered>tfoot>tr>th:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, .panel>.table-bordered>thead>tr>td:first-child, .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, .panel>.table-bordered>tbody>tr>td:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, .panel>.table-bordered>tfoot>tr>td:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left: 0; -} -.panel>.table-bordered>thead>tr>th:last-child, .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, .panel>.table-bordered>tbody>tr>th:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, .panel>.table-bordered>tfoot>tr>th:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, .panel>.table-bordered>thead>tr>td:last-child, .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, .panel>.table-bordered>tbody>tr>td:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, .panel>.table-bordered>tfoot>tr>td:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right: 0; -} -.panel>.table-bordered>thead>tr:last-child>th, .panel>.table-responsive>.table-bordered>thead>tr:last-child>th, .panel>.table-bordered>tbody>tr:last-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, .panel>.table-bordered>tfoot>tr:last-child>th, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th, .panel>.table-bordered>thead>tr:last-child>td, .panel>.table-responsive>.table-bordered>thead>tr:last-child>td, .panel>.table-bordered>tbody>tr:last-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, .panel>.table-bordered>tfoot>tr:last-child>td, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom: 0; -} -.panel>.table-responsive { - border: 0; - margin-bottom: 0; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel-heading>.dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title>a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; - overflow: hidden; -} -.panel-group .panel+.panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading+.panel-collapse .panel-body { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer+.panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} -.panel-default { - border-color: #ddd; -} -.panel-default>.panel-heading { - color: #333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default>.panel-heading+.panel-collapse .panel-body { - border-top-color: #ddd; -} -.panel-default>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #ddd; -} -.panel-primary { - border-color: #428bca; -} -.panel-primary>.panel-heading { - color: #fff; - background-color: #428bca; - border-color: #428bca; -} -.panel-primary>.panel-heading+.panel-collapse .panel-body { - border-top-color: #428bca; -} -.panel-primary>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #428bca; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success>.panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success>.panel-heading+.panel-collapse .panel-body { - border-top-color: #d6e9c6; -} -.panel-success>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning>.panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning>.panel-heading+.panel-collapse .panel-body { - border-top-color: #faebcc; -} -.panel-warning>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger>.panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger>.panel-heading+.panel-collapse .panel-body { - border-top-color: #ebccd1; -} -.panel-danger>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #ebccd1; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info>.panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info>.panel-heading+.panel-collapse .panel-body { - border-top-color: #bce8f1; -} -.panel-info>.panel-footer+.panel-collapse .panel-body { - border-bottom-color: #bce8f1; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, .15); -} -.well-lg { - padding: 24px; - border-radius: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} -.close { - float: right; - font-size: 21px; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .2; - filter: alpha(opacity=20); -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - opacity: .5; - filter: alpha(opacity=50); -} -button.close { - padding: 0; - cursor: pointer; - background: 0 0; - border: 0; - -webkit-appearance: none; -} -.modal-open { - overflow: hidden; -} -.modal { - display: none; - overflow: auto; - overflow-y: scroll; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform .3s ease-out; - -moz-transition: -moz-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #fff; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); - box-shadow: 0 3px 9px rgba(0, 0, 0, .5); - background-clip: padding-box; - outline: 0; -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: .5; - filter: alpha(opacity=50); -} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; - min-height: 16.428571429px; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.428571429; -} -.modal-body { - position: relative; - padding: 20px; -} -.modal-footer { - margin-top: 15px; - padding: 19px 20px 20px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn+.btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn+.btn { - margin-left: -1px; -} -.modal-footer .btn-block+.btn-block { - margin-left: 0; -} -@media (min-width:768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; -} -.modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - box-shadow: 0 5px 15px rgba(0, 0, 0, .5); -} -.modal-sm { - width: 300px; -} -.modal-lg { - width: 900px; -} -}.tooltip { - position: absolute; - z-index: 1030; - display: block; - visibility: visible; - font-size: 12px; - line-height: 1.4; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: .9; - filter: alpha(opacity=90); -} -.tooltip.top { - margin-top: -3px; - padding: 5px 0; -} -.tooltip.right { - margin-left: 3px; - padding: 0 5px; -} -.tooltip.bottom { - margin-top: 3px; - padding: 5px 0; -} -.tooltip.left { - margin-left: -3px; - padding: 0 5px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - text-decoration: none; - background-color: #000; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - left: 5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - right: 5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - left: 5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - right: 5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1010; - display: none; - max-width: 276px; - padding: 1px; - text-align: left; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - white-space: normal; -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - margin: 0; - padding: 8px 14px; - font-size: 14px; - font-weight: 400; - line-height: 18px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover .arrow, .popover .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover .arrow { - border-width: 11px; -} -.popover .arrow:after { - border-width: 10px; - content: ""} -.popover.top .arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999; - border-top-color: rgba(0, 0, 0, .25); - bottom: -11px; -} -.popover.top .arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #fff; -} -.popover.right .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999; - border-right-color: rgba(0, 0, 0, .25); -} -.popover.right .arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #fff; -} -.popover.bottom .arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999; - border-bottom-color: rgba(0, 0, 0, .25); - top: -11px; -} -.popover.bottom .arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999; - border-left-color: rgba(0, 0, 0, .25); -} -.popover.left .arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #fff; - bottom: -10px; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%} -.carousel-inner>.item { - display: none; - position: relative; - -webkit-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; -} -.carousel-inner>.item>img, .carousel-inner>.item>a>img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; -} -.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev { - display: block; -} -.carousel-inner>.active { - left: 0; -} -.carousel-inner>.next, .carousel-inner>.prev { - position: absolute; - top: 0; - width: 100%} -.carousel-inner>.next { - left: 100%} -.carousel-inner>.prev { - left: -100%} -.carousel-inner>.next.left, .carousel-inner>.prev.right { - left: 0; -} -.carousel-inner>.active.left { - left: -100%} -.carousel-inner>.active.right { - left: 100%} -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 15%; - opacity: .5; - filter: alpha(opacity=50); - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .5) 0), color-stop(rgba(0, 0, 0, .0001) 100%)); - background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - left: auto; - right: 0; - background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0), color-stop(rgba(0, 0, 0, .5) 100%)); - background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control:hover, .carousel-control:focus { - outline: 0; - color: #fff; - text-decoration: none; - opacity: .9; - filter: alpha(opacity=90); -} -.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { - left: 50%} -.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { - right: 50%} -.carousel-control .icon-prev, .carousel-control .icon-next { - width: 20px; - height: 20px; - margin-top: -10px; - margin-left: -10px; - font-family: serif; -} -.carousel-control .icon-prev:before { - content: '\2039'} -.carousel-control .icon-next:before { - content: '\203a'} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid #fff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); -} -.carousel-indicators .active { - margin: 0; - width: 12px; - height: 12px; - background-color: #fff; -} -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width:768px) { - .carousel-control .glyphicons-chevron-left, .carousel-control .glyphicons-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - margin-left: -15px; - font-size: 30px; -} -.carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; -} -.carousel-indicators { - bottom: 20px; -} -}.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { - content: " "; - display: table; -} -.clearfix:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical>.btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} -.pull-right { - float: right!important; -} -.pull-left { - float: left!important; -} -.hide { - display: none!important; -} -.show { - display: block!important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none!important; - visibility: hidden!important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, tr.visible-xs, th.visible-xs, td.visible-xs { - display: none!important; -} -@media (max-width:767px) { - .visible-xs { - display: block!important; -} -table.visible-xs { - display: table; -} -tr.visible-xs { - display: table-row!important; -} -th.visible-xs, td.visible-xs { - display: table-cell!important; -} -}.visible-sm, tr.visible-sm, th.visible-sm, td.visible-sm { - display: none!important; -} -@media (min-width:768px) and (max-width:991px) { - .visible-sm { - display: block!important; -} -table.visible-sm { - display: table; -} -tr.visible-sm { - display: table-row!important; -} -th.visible-sm, td.visible-sm { - display: table-cell!important; -} -}.visible-md, tr.visible-md, th.visible-md, td.visible-md { - display: none!important; -} -@media (min-width:992px) and (max-width:1199px) { - .visible-md { - display: block!important; -} -table.visible-md { - display: table; -} -tr.visible-md { - display: table-row!important; -} -th.visible-md, td.visible-md { - display: table-cell!important; -} -}.visible-lg, tr.visible-lg, th.visible-lg, td.visible-lg { - display: none!important; -} -@media (min-width:1200px) { - .visible-lg { - display: block!important; -} -table.visible-lg { - display: table; -} -tr.visible-lg { - display: table-row!important; -} -th.visible-lg, td.visible-lg { - display: table-cell!important; -} -}@media (max-width:767px) { - .hidden-xs, tr.hidden-xs, th.hidden-xs, td.hidden-xs { - display: none!important; -} -}@media (min-width:768px) and (max-width:991px) { - .hidden-sm, tr.hidden-sm, th.hidden-sm, td.hidden-sm { - display: none!important; -} -}@media (min-width:992px) and (max-width:1199px) { - .hidden-md, tr.hidden-md, th.hidden-md, td.hidden-md { - display: none!important; -} -}@media (min-width:1200px) { - .hidden-lg, tr.hidden-lg, th.hidden-lg, td.hidden-lg { - display: none!important; -} -}.visible-print, tr.visible-print, th.visible-print, td.visible-print { - display: none!important; -} -@media print { - .visible-print { - display: block!important; -} -table.visible-print { - display: table; -} -tr.visible-print { - display: table-row!important; -} -th.visible-print, td.visible-print { - display: table-cell!important; -} -}@media print { - .hidden-print, tr.hidden-print, th.hidden-print, td.hidden-print { - display: none!important; -} -} \ No newline at end of file diff --git a/getfedora.org/static/css/font-awesome.css b/getfedora.org/static/css/font-awesome.css deleted file mode 100644 index ee906a8..0000000 --- a/getfedora.org/static/css/font-awesome.css +++ /dev/null @@ -1,2337 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper-pp:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} -.fa-reddit-alien:before { - content: "\f281"; -} -.fa-edge:before { - content: "\f282"; -} -.fa-credit-card-alt:before { - content: "\f283"; -} -.fa-codiepie:before { - content: "\f284"; -} -.fa-modx:before { - content: "\f285"; -} -.fa-fort-awesome:before { - content: "\f286"; -} -.fa-usb:before { - content: "\f287"; -} -.fa-product-hunt:before { - content: "\f288"; -} -.fa-mixcloud:before { - content: "\f289"; -} -.fa-scribd:before { - content: "\f28a"; -} -.fa-pause-circle:before { - content: "\f28b"; -} -.fa-pause-circle-o:before { - content: "\f28c"; -} -.fa-stop-circle:before { - content: "\f28d"; -} -.fa-stop-circle-o:before { - content: "\f28e"; -} -.fa-shopping-bag:before { - content: "\f290"; -} -.fa-shopping-basket:before { - content: "\f291"; -} -.fa-hashtag:before { - content: "\f292"; -} -.fa-bluetooth:before { - content: "\f293"; -} -.fa-bluetooth-b:before { - content: "\f294"; -} -.fa-percent:before { - content: "\f295"; -} -.fa-gitlab:before { - content: "\f296"; -} -.fa-wpbeginner:before { - content: "\f297"; -} -.fa-wpforms:before { - content: "\f298"; -} -.fa-envira:before { - content: "\f299"; -} -.fa-universal-access:before { - content: "\f29a"; -} -.fa-wheelchair-alt:before { - content: "\f29b"; -} -.fa-question-circle-o:before { - content: "\f29c"; -} -.fa-blind:before { - content: "\f29d"; -} -.fa-audio-description:before { - content: "\f29e"; -} -.fa-volume-control-phone:before { - content: "\f2a0"; -} -.fa-braille:before { - content: "\f2a1"; -} -.fa-assistive-listening-systems:before { - content: "\f2a2"; -} -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: "\f2a3"; -} -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: "\f2a4"; -} -.fa-glide:before { - content: "\f2a5"; -} -.fa-glide-g:before { - content: "\f2a6"; -} -.fa-signing:before, -.fa-sign-language:before { - content: "\f2a7"; -} -.fa-low-vision:before { - content: "\f2a8"; -} -.fa-viadeo:before { - content: "\f2a9"; -} -.fa-viadeo-square:before { - content: "\f2aa"; -} -.fa-snapchat:before { - content: "\f2ab"; -} -.fa-snapchat-ghost:before { - content: "\f2ac"; -} -.fa-snapchat-square:before { - content: "\f2ad"; -} -.fa-pied-piper:before { - content: "\f2ae"; -} -.fa-first-order:before { - content: "\f2b0"; -} -.fa-yoast:before { - content: "\f2b1"; -} -.fa-themeisle:before { - content: "\f2b2"; -} -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: "\f2b3"; -} -.fa-fa:before, -.fa-font-awesome:before { - content: "\f2b4"; -} -.fa-handshake-o:before { - content: "\f2b5"; -} -.fa-envelope-open:before { - content: "\f2b6"; -} -.fa-envelope-open-o:before { - content: "\f2b7"; -} -.fa-linode:before { - content: "\f2b8"; -} -.fa-address-book:before { - content: "\f2b9"; -} -.fa-address-book-o:before { - content: "\f2ba"; -} -.fa-vcard:before, -.fa-address-card:before { - content: "\f2bb"; -} -.fa-vcard-o:before, -.fa-address-card-o:before { - content: "\f2bc"; -} -.fa-user-circle:before { - content: "\f2bd"; -} -.fa-user-circle-o:before { - content: "\f2be"; -} -.fa-user-o:before { - content: "\f2c0"; -} -.fa-id-badge:before { - content: "\f2c1"; -} -.fa-drivers-license:before, -.fa-id-card:before { - content: "\f2c2"; -} -.fa-drivers-license-o:before, -.fa-id-card-o:before { - content: "\f2c3"; -} -.fa-quora:before { - content: "\f2c4"; -} -.fa-free-code-camp:before { - content: "\f2c5"; -} -.fa-telegram:before { - content: "\f2c6"; -} -.fa-thermometer-4:before, -.fa-thermometer:before, -.fa-thermometer-full:before { - content: "\f2c7"; -} -.fa-thermometer-3:before, -.fa-thermometer-three-quarters:before { - content: "\f2c8"; -} -.fa-thermometer-2:before, -.fa-thermometer-half:before { - content: "\f2c9"; -} -.fa-thermometer-1:before, -.fa-thermometer-quarter:before { - content: "\f2ca"; -} -.fa-thermometer-0:before, -.fa-thermometer-empty:before { - content: "\f2cb"; -} -.fa-shower:before { - content: "\f2cc"; -} -.fa-bathtub:before, -.fa-s15:before, -.fa-bath:before { - content: "\f2cd"; -} -.fa-podcast:before { - content: "\f2ce"; -} -.fa-window-maximize:before { - content: "\f2d0"; -} -.fa-window-minimize:before { - content: "\f2d1"; -} -.fa-window-restore:before { - content: "\f2d2"; -} -.fa-times-rectangle:before, -.fa-window-close:before { - content: "\f2d3"; -} -.fa-times-rectangle-o:before, -.fa-window-close-o:before { - content: "\f2d4"; -} -.fa-bandcamp:before { - content: "\f2d5"; -} -.fa-grav:before { - content: "\f2d6"; -} -.fa-etsy:before { - content: "\f2d7"; -} -.fa-imdb:before { - content: "\f2d8"; -} -.fa-ravelry:before { - content: "\f2d9"; -} -.fa-eercast:before { - content: "\f2da"; -} -.fa-microchip:before { - content: "\f2db"; -} -.fa-snowflake-o:before { - content: "\f2dc"; -} -.fa-superpowers:before { - content: "\f2dd"; -} -.fa-wpexplorer:before { - content: "\f2de"; -} -.fa-meetup:before { - content: "\f2e0"; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} diff --git a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.eot b/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.eot deleted file mode 100644 index 755fb56..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.svg b/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.svg deleted file mode 100644 index fca9252..0000000 --- a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Dave Crossland -Foundry URL : http://abattis.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.ttf b/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.ttf deleted file mode 100644 index a4fe14e..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.woff b/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.woff deleted file mode 100644 index 1f437f3..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Bold-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.eot b/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.eot deleted file mode 100644 index a308562..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.svg b/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.svg deleted file mode 100644 index 92f1767..0000000 --- a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Dave Crossland -Foundry URL : http://abattis.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.ttf b/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.ttf deleted file mode 100644 index e28e364..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.woff b/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.woff deleted file mode 100644 index eaae0a9..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-BoldOblique-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.eot b/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.eot deleted file mode 100644 index fabd128..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.svg b/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.svg deleted file mode 100644 index 313ab3d..0000000 --- a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Dave Crossland -Foundry URL : http://abattis.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.ttf b/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.ttf deleted file mode 100644 index 2330ccd..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.woff b/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.woff deleted file mode 100644 index c7d1ea8..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Oblique-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.eot b/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.eot deleted file mode 100644 index 7022696..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.svg b/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.svg deleted file mode 100644 index 3c11cb6..0000000 --- a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Dave Crossland -Foundry URL : http://abattis.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.ttf b/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.ttf deleted file mode 100644 index ff7a11d..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.woff b/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.woff deleted file mode 100644 index cab5bd8..0000000 Binary files a/getfedora.org/static/css/fonts/Cantarell-Regular-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.eot b/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.eot deleted file mode 100644 index 5f40449..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.svg b/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.svg deleted file mode 100644 index 8b25d69..0000000 --- a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.svg +++ /dev/null @@ -1,504 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Johan Aakerlund - aajohan - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.ttf b/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.ttf deleted file mode 100644 index d10f756..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.woff b/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.woff deleted file mode 100644 index 7d3d8aa..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Bold-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.eot b/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.eot deleted file mode 100644 index 224ec8e..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.svg b/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.svg deleted file mode 100644 index b1b9d23..0000000 --- a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.svg +++ /dev/null @@ -1,505 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Johan Aakerlund - aajohan -Foundry : Johan Aakerlund - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.ttf b/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.ttf deleted file mode 100644 index b3f207e..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.woff b/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.woff deleted file mode 100644 index 59c5767..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Regular-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.eot b/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.eot deleted file mode 100644 index 46a6295..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.svg b/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.svg deleted file mode 100644 index e099110..0000000 --- a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.svg +++ /dev/null @@ -1,505 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Johan Aakerlund - aajohan -Foundry : Johan Aakerlund - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.ttf b/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.ttf deleted file mode 100644 index 8289a85..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.woff b/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.woff deleted file mode 100644 index 8d75a95..0000000 Binary files a/getfedora.org/static/css/fonts/Comfortaa_Thin-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/css/jquery.uls.compact.css b/getfedora.org/static/css/jquery.uls.compact.css deleted file mode 100644 index f5e6e07..0000000 --- a/getfedora.org/static/css/jquery.uls.compact.css +++ /dev/null @@ -1,75 +0,0 @@ -.uls-compact .uls-icon-close, -.uls-compact .uls-title-region, -.uls-compact .uls-map-block, -.uls-compact #uls-settings-block { - display: none !important; -} - -.uls-compact.uls-menu { - border-radius: 0; -} - -.uls-compact .uls-search { - background: white; - border-top: none; - padding: 0.8em 0; - border-bottom-width: 1px; - border-bottom-style: solid; - border-bottom-color: #DDD; -} - -.uls-compact .uls-filterinput, -.uls-compact .uls-filterinput:focus { - background-color: transparent; - border: none; - box-shadow: none; - outline: none; - font-size: 18px; - left: 0; -} - -.uls-compact .uls-language-list { - background: #FCFCFC; - height: 20em; -} - -.uls-compact .uls-search-label { - background-size: 25px; - height: 26px; - width: 26px; - float: right; - opacity: 0.8; -} - -.uls-compact .uls-languagefilter-clear { - margin-left: 0; -} - -.uls-compact .uls-title-region a { - color: #777; - display: inline-block; - margin: 15px 0 5px 19px; - cursor: pointer; - padding: 6px; - text-decoration: none; - font-size: 14px; - border: 1px solid transparent; -} - -.uls-compact .uls-title-region a:hover { - color: #252525; - background: #F0F0F0; - border: 1px solid #DDD; - border-radius: 3px; -} - -.uls-compact .uls-title-region a:before { - display: inline-block; - width: 0; - height: 0; - border-right: 4px solid #777; - border-top: 4px solid transparent; - border-bottom: 4px solid transparent; - content: ""; - margin: 0 6px 0 0; -} diff --git a/getfedora.org/static/css/jquery.uls.css b/getfedora.org/static/css/jquery.uls.css deleted file mode 100644 index 06268fd..0000000 --- a/getfedora.org/static/css/jquery.uls.css +++ /dev/null @@ -1,260 +0,0 @@ -.uls-trigger { - /* @embed */ - background: transparent url('/static/images/icon-language.png') no-repeat scroll left center; - /* @embed */ - background-image: -webkit-linear-gradient(transparent, transparent), url('/static/images/icon-language.svg'); - /* @embed */ - background-image: linear-gradient(transparent, transparent), url('/static/images/icon-language.svg'); - padding-left: 30px; -} - -.uls-menu { - position: absolute; - z-index: 1000; - display: none; - margin-top: 1px; - /* Styling */ - background-color: #ffffff; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; -} - -.uls-wide { - min-width: 715px; - width: 45%; -} - -.uls-title-region a { - padding-left: 15px; -} - -.uls-menu .uls-title { - font-weight: normal; - border: none; - padding-top: 1.25em; - padding-left: 15px; - padding-bottom: 3px; - font-size: 18pt; - line-height: 1.25em; - color: #555; -} - -.uls-menu .uls-no-results-found-title { - font-size: 16pt; - font-weight: bold; - line-height: 1.5em; - padding-left: 6px; - padding-top: 10px; - margin-top: 0; - margin-bottom: 15px; - border-bottom: none; - color: #555; -} - -.uls-menu .uls-lcd-region-section .uls-lcd-region-title { - color: #777; - font-size: 14pt; - font-weight: lighter; - line-height: 1.5em; - padding-left: 0; - margin-top: 0; - margin-bottom: 10px; - border-bottom: none; -} - -.uls-worldmap { - /* @embed */ - background: transparent url('/static/images/world_map.png') no-repeat scroll right top; - /* @embed */ - background-image: -webkit-linear-gradient(transparent, transparent), url('/static/images/world_map.svg'); - /* @embed */ - background-image: linear-gradient(transparent, transparent), url('/static/images/world_map.svg'); - background-size: 100%; -} - -div.uls-region { - cursor: pointer; - padding: 0; - margin: 0; - height: 120px; - border-bottom-color: transparent; - border-bottom-style: solid; - border-bottom-width: 2px; -} - -.uls-worldmap .uls-region { /* The map doesn't flip */ - /* @noflip */ - float: left; -} - -.uls-region a { - bottom: 2px; - left: 2px; - padding: 0; - position: absolute; - font-size: 13px; - line-height: 1.2em; - text-decoration: none; - overflow: hidden; - text-overflow: ellipsis; - width: 99%; -} - -.uls-region:hover { - /*Cross-browser background transparency*/ - background: #3366bb; - background: rgba(51, 102, 187, 0.1); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#253366bb, endColorstr=#253366bb ); - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#253366bb, endColorstr=#253366bb)"; -} - -.uls-map-block .active { - border-bottom-color: #3366bb; - border-bottom-style: solid; -} - -.uls-menu .row .uls-map-block { - top: 1px; - margin-right: 0; - padding-right: 0; - float: right; - overflow: hidden; - opacity: 0.7; - -moz-transition: opacity 0.2s linear; - -o-transition: opacity 0.2s linear; - -webkit-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; -} - -.uls-map-block a { - color: #333; - opacity: 0; - -moz-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - -webkit-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} - -.uls-menu .uls-map-block:hover, -.uls-menu .uls-map-block:hover a { - opacity: 1; - color: #333; -} - -.uls-map-block .uls-region-1 { - border-color: transparent; -} - -.uls-map-block:hover .active { - border-color: #3366bb; -} - -.uls-map-block .active a { - font-weight: bold; -} - -.uls-icon-close { - /* @embed */ - background: transparent url('/static/images/close.png') no-repeat scroll center center; - /* @embed */ - background-image: -webkit-linear-gradient(transparent, transparent), url('/static/images/close.svg'); - /* @embed */ - background-image: linear-gradient(transparent, transparent), url('/static/images/close.svg'); - float: right; - padding: 15px; - cursor: pointer; -} - -.uls-menu .uls-languagefilter { - background-color: transparent; - border: 1px solid #c9c9c9; - border-radius: 2px 2px 2px 2px; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; - color: #333; - display: block; - padding: 6px; - -moz-transition: border 0.15s linear 0s; - -o-transition: border 0.15s linear 0s; - -webkit-transition: border 0.15s linear 0s; - transition: border 0.15s linear 0s; -} - -.uls-menu .uls-languagefilter:focus { - border: 1px solid #3366bb; -} - -.uls-menu .uls-search { - position: relative; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F0F0F0', endColorstr='#FBFBFB'); - background: #f8f8f8; - background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(#FBFBFB)); - background: -webkit-linear-gradient(top, #F0F0F0, #FBFBFB); - background: -moz-linear-gradient(top, #F0F0F0, #FBFBFB); - background: -o-linear-gradient(top, #F0F0F0, #FBFBFB); - background: linear-gradient(#F0F0F0, #FBFBFB); - border-top-color: #AAA; - border-top-style: solid; - border-top-width: 1px; - padding: 0.8em 0; - border-bottom-width: 1px; - border-bottom-style: solid; - border-bottom-color: #DDD; -} - -.uls-menu .uls-search-label { - /* @embed */ - background: transparent url('/static/images/search.png') no-repeat scroll right center; - /* @embed */ - background-image: -webkit-linear-gradient(transparent, transparent), url('/static/images/search.svg'); - /* @embed */ - background-image: linear-gradient(transparent, transparent), url('/static/images/search.svg'); - background-size: 30px; - height: 32px; - width: 32px; - float: right; -} - -.uls-menu .uls-languagefilter-clear { - /* @embed */ - background: transparent url('/static/images/clear.png') no-repeat scroll left center; - /* @embed */ - background-image: -webkit-linear-gradient(transparent, transparent), url('/static/images/clear.svg'); - /* @embed */ - background-image: linear-gradient(transparent, transparent), url('/static/images/clear.svg'); - cursor: pointer; - height: 32px; - position: absolute; - width: 32px; - margin-left: -32px; -} - -.uls-menu .uls-filterinput { - position: absolute; - top: 0; - left: 0; - font-size: 14px; - height: 32px; - width: 100%; - text-align: left; -} - -.uls-menu .uls-filtersuggestion { - padding: 6px; - background-color: white; - color: #888; - border: 1px transparent; - border-radius: 2px 2px 2px 2px; - box-shadow: 0 1px 2px transparent inset; - left: 1px; -} - -.uls-menu .uls-search-input-block { - position: relative; -} diff --git a/getfedora.org/static/css/jquery.uls.grid.css b/getfedora.org/static/css/jquery.uls.grid.css deleted file mode 100644 index 9caf088..0000000 --- a/getfedora.org/static/css/jquery.uls.grid.css +++ /dev/null @@ -1,315 +0,0 @@ -/* Generated using Foundation http://foundation.zurb.com/docs/grid.php */ -/* Global Reset & Standards ---------------------- */ -.grid * { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -/* Misc ---------------------- */ -.grid .left { - float: left; -} - -.grid .right { - float: right; -} - -.grid .text-left { - text-align: left; -} - -.grid .text-right { - text-align: right; -} - -.grid .text-center { - text-align: center; -} - -.grid .hide { - display: none; -} - -.grid .highlight { - background: #ffff99; -} - -/* The Grid ---------------------- */ -.grid .row { - width: 100%; - max-width: none; - min-width: 600px; - margin: 0 auto; -} - -.grid .row .row { - width: auto; - max-width: none; - min-width: 0; - margin: 0 -5px; -} - -.grid .row.collapse .column, -.grid .row.collapse .columns { - padding: 0; -} - -.grid .row .row { - width: auto; - max-width: none; - min-width: 0; - margin: 0 -5px; -} - -.grid .row .row.collapse { - margin: 0; -} - -.grid .column, .grid .columns { - float: left; - min-height: 1px; - padding: 0 5px; - position: relative; -} - -.grid .column.centered, .grid .columns.centered { - float: none; - margin: 0 auto; -} - -.grid .row .one { - width: 8.333%; -} - -.grid .row .two { - width: 16.667%; -} - -.grid .row .three { - width: 25%; -} - -.grid .row .four { - width: 33.333%; -} - -.grid .row .five { - width: 41.667%; -} - -.grid .row .six { - width: 50%; -} - -.grid .row .seven { - width: 58.333%; -} - -.grid .row .eight { - width: 66.667%; -} - -.grid .row .nine { - width: 75%; -} - -.grid .row .ten { - width: 83.333%; -} - -.grid .row .eleven { - width: 91.667%; -} - -.grid .row .twelve { - width: 100%; -} - -.grid .row .offset-by-one { - margin-left: 8.333%; -} - -.grid .row .offset-by-two { - margin-left: 16.667%; -} - -.grid .row .offset-by-three { - margin-left: 25%; -} - -.grid .row .offset-by-four { - margin-left: 33.333%; -} - -.grid .row .offset-by-five { - margin-left: 41.667%; -} - -.grid .row .offset-by-six { - margin-left: 50%; -} - -.grid .row .offset-by-seven { - margin-left: 58.333%; -} - -.grid .row .offset-by-eight { - margin-left: 66.667%; -} - -.grid .row .offset-by-nine { - margin-left: 75%; -} - -.grid .row .offset-by-ten { - margin-left: 83.333%; -} - -.grid .push-two { - left: 16.667%; -} - -.grid .pull-two { - right: 16.667%; -} - -.grid .push-three { - left: 25%; -} - -.grid .pull-three { - right: 25%; -} - -.grid .push-four { - left: 33.333%; -} - -.grid .pull-four { - right: 33.333%; -} - -.grid .push-five { - left: 41.667%; -} - -.grid .pull-five { - right: 41.667%; -} - -.grid .push-six { - left: 50%; -} - -.grid .pull-six { - right: 50%; -} - -.grid .push-seven { - left: 58.333%; -} - -.grid .pull-seven { - right: 58.333%; -} - -.grid .push-eight { - left: 66.667%; -} - -.grid .pull-eight { - right: 66.667%; -} - -.grid .push-nine { - left: 75%; -} - -.grid .pull-nine { - right: 75%; -} - -.grid .push-ten { - left: 83.333%; -} - -.grid .pull-ten { - right: 83.333%; -} - -/* Nicolas Gallagher's micro clearfix */ -.grid .row { - *zoom: 1; -} - -.grid .row:before, .grid .row:after { - content: ""; - display: table; -} - -.grid .row:after { - clear: both; -} - -/* Block Grids ---------------------- */ -/* These are 2-up, 3-up, 4-up and 5-up ULs, suited - for repeating blocks of content. Add 'mobile' to - them to switch them just like the layout grid - (one item per line) on phones - - For IE7/8 compatibility block-grid items need to be - the same height. You can optionally uncomment the - lines below to support arbitrary height, but know - that IE7/8 do not support :nth-child. - -------------------------------------------------- */ -.grid .block-grid { - display: block; - overflow: hidden; - padding: 0; -} - -.grid .block-grid > li { - display: block; - height: auto; - float: left; -} - -.grid .block-grid.two-up { - margin: 0 -15px; -} - -.grid .block-grid.two-up > li { - width: 50%; - padding: 0 15px 15px; -} - -/* .block-grid.two-up>li:nth-child(2n+1) {clear: left;} */ -.grid .block-grid.three-up { - margin: 0 -12px; -} - -.grid .block-grid.three-up > li { - width: 33.33%; - padding: 0 12px 12px; -} - -/* .block-grid.three-up>li:nth-child(3n+1) {clear: left;} */ -.grid .block-grid.four-up { - margin: 0 -10px; -} - -.grid .block-grid.four-up > li { - width: 25%; - padding: 0 10px 10px; -} - -/* .block-grid.four-up>li:nth-child(4n+1) {clear: left;} */ -.grid .block-grid.five-up { - margin: 0 -8px; -} - -.grid .block-grid.five-up > li { - width: 20%; - padding: 0 8px 8px; -} diff --git a/getfedora.org/static/css/jquery.uls.lcd.css b/getfedora.org/static/css/jquery.uls.lcd.css deleted file mode 100644 index becfb6d..0000000 --- a/getfedora.org/static/css/jquery.uls.lcd.css +++ /dev/null @@ -1,86 +0,0 @@ -.uls-lcd-region-section ul li:hover { - background-color: #eaeff7; -} - -.uls-lcd-region-section { - margin-top: 10px; -} - -/* Language list */ -.uls-language-list { - height: 17em; - overflow: auto; - width: auto; -} - -.uls-language-block ul { - margin: 0 0 1.5em; -} - -.uls-language-list ul li { - cursor: pointer; - font-weight: normal; - overflow: hidden; - white-space: nowrap; - - /* - * Some languages have long names for various reasons and we still want - * them to appear on one line. - * To make it work correctly, the directionality must be set correctly - * on the item level. - */ - text-overflow: ellipsis; - - /* - * The directionality (ltr/rtl) for each list item is set dynamically - * as HTML attributes in JavaScript. Setting directionality also applies - * alignment, but a list with mixed alignment is hard to read. - * All items are therefore explicitly aligned to the left, including names - * of right-to-left languages in left-to-right environment and vice versa. - * As long as the directionality of the item is set correctly, the text - * is readable. - */ - text-align: left; - - /* - * We don't want any visible bullets in this list. - */ - list-style-image: none; - list-style-type: none; -} - -.uls-language-list strong { - text-decoration: underline; -} - -.uls-language-list a { - font-weight: normal; - text-decoration: none; - color: #3366bb; - font-size: 14px; - line-height: 1.6em; -} - -.uls-language-block { - width: 100%; -} - -.uls-no-results-view { - color: #555; - height: 100%; -} - -.uls-no-found-more { - font-size: 0.9em; - background: #F8F8F8; - width: 100%; - margin-top: 1.6em; - line-height: 1.6em; - position: absolute; - bottom: 0; - left: 0; -} - -.uls-no-found-more a { - cursor: pointer; -} diff --git a/getfedora.org/static/css/jquery.uls.mobile.css b/getfedora.org/static/css/jquery.uls.mobile.css deleted file mode 100644 index 5d3e06e..0000000 --- a/getfedora.org/static/css/jquery.uls.mobile.css +++ /dev/null @@ -1,319 +0,0 @@ -@media only screen and (max-width: 767px) { - - .uls-mobile.uls-menu { - width: 95%; - left: 2.5%; - } - - .uls-mobile .uls-language-list { - -webkit-overflow-scrolling: touch; - } - - .uls-mobile .uls-language-block { - padding-left: 15px !important; - } - - .uls-mobile .uls-language-block ul { - min-height: 14em; - } - - .uls-mobile .uls-language-block a { - font-size: 16px; - line-height: 1.7em; - } - - .uls-mobile div.uls-region { - width: 33% !important; - float: left !important; - } - - .uls-mobile .uls-map-block a, - .uls-mobile .uls-map-block { - opacity: 1 !important; - } - - .uls-mobile .row { - width: auto; - min-width: 0; - margin-left: 0; - margin-right: 0; - } - - .uls-mobile .column, - .uls-mobile .columns { - width: auto !important; - float: none; - } - - .uls-mobile .column:last-child, - .uls-mobile .columns:last-child { - float: none; - } - - .uls-mobile [class*="column"] + [class*="column"]:last-child { - float: none; - } - - .uls-mobile .column:before, - .uls-mobile .uls-mobile .columns:before, - .uls-mobile .column:after, - .columns:after { - content: ""; - display: table; - } - - .uls-mobile .column:after, - .uls-mobile .columns:after { - clear: both; - } - - .uls-mobile .offset-by-one, - .uls-mobile .offset-by-two, - .uls-mobile .offset-by-three, - .uls-mobile .offset-by-four, - .uls-mobile .offset-by-five, - .uls-mobile .offset-by-six, - .uls-mobile .offset-by-seven, - .uls-mobile .offset-by-eight, - .uls-mobile .offset-by-nine, - .uls-mobile .offset-by-ten { - margin-left: 0 !important; - } - - .uls-mobile .push-two, - .uls-mobile .push-three, - .uls-mobile .push-four, - .uls-mobile .push-five, - .uls-mobile .push-six, - .uls-mobile .push-seven, - .uls-mobile .push-eight, - .uls-mobile .push-nine, - .uls-mobile .push-ten { - left: auto; - } - - .uls-mobile .pull-two, - .uls-mobile .pull-three, - .uls-mobile .pull-four, - .uls-mobile .pull-five, - .uls-mobile .pull-six, - .uls-mobile .pull-seven, - .uls-mobile .pull-eight, - .uls-mobile .pull-nine, - .uls-mobile .pull-ten { - right: auto; - } - - /* Mobile 4-column Grid */ - .uls-mobile .row .mobile-one { - width: 25% !important; - float: left; - padding: 0 4px; - } - - .uls-mobile .row .mobile-one:last-child { - float: right; - } - - .uls-mobile .row.collapse .mobile-one { - padding: 0; - } - - .uls-mobile .row .mobile-two { - width: 50% !important; - float: left; - padding: 0 4px; - } - - .uls-mobile .row .mobile-two:last-child { - float: right; - } - - .uls-mobile .row.collapse .mobile-two { - padding: 0; - } - - .uls-mobile .row .mobile-three { - width: 75% !important; - float: left; - padding: 0 4px; - } - - .uls-mobile .row .mobile-three:last-child { - float: right; - } - - .uls-mobile .row.collapse .mobile-three { - padding: 0; - } - - .uls-mobile .row .mobile-four { - width: 100% !important; - float: left; - padding: 0 4px; - } - - .uls-mobile .row .mobile-four:last-child { - float: right; - } - - .uls-mobile .row.collapse .mobile-four { - padding: 0; - } - - .uls-mobile .push-one-mobile { - left: 25%; - } - - .uls-mobile .pull-one-mobile { - right: 25%; - } - - .uls-mobile .push-two-mobile { - left: 50%; - } - - .uls-mobile .pull-two-mobile { - right: 50%; - } - - .uls-mobile .push-three-mobile { - left: 75%; - } - - .uls-mobile .pull-three-mobile { - right: 75%; - } -} - -/* Visibility Classes ---------------------- */ -/* Standard (large) display targeting */ -.uls-mobile .show-for-small, -.uls-mobile .show-for-medium, -.uls-mobile .show-for-medium-down, -.uls-mobile .hide-for-large, -.uls-mobile .hide-for-large-up, -.uls-mobile .show-for-xlarge { - display: none !important; -} - -.uls-mobile .hide-for-xlarge, -.uls-mobile .show-for-large, -.uls-mobile .show-for-large-up, -.uls-mobile .hide-for-small, -.uls-mobile .hide-for-medium, -.uls-mobile .hide-for-medium-down { - display: block !important; -} - -/* Very large display targeting */ -@media only screen and (min-width: 1441px) { - - .uls-mobile .hide-for-small, - .uls-mobile .hide-for-medium, - .uls-mobile .hide-for-medium-down, - .hide-for-large, .show-for-large-up, - .show-for-xlarge { - display: block !important; - } - - .show-for-small, - .uls-mobile .show-for-medium, - .uls-mobile .show-for-medium-down, - .uls-mobile .show-for-large, - .uls-mobile .hide-for-large-up, - .uls-mobile .hide-for-xlarge { - display: none !important; - } -} -/* Medium display targeting */ -@media only screen and (max-width: 1279px) and (min-width: 768px) { - - .uls-mobile .hide-for-small, - .uls-mobile .show-for-medium, - .uls-mobile .show-for-medium-down, - .uls-mobile .hide-for-large, - .uls-mobile .hide-for-large-up, - .uls-mobile .hide-for-xlarge { - display: block !important; - } - - .uls-mobile .show-for-small, - .uls-mobile .hide-for-medium, - .uls-mobile .hide-for-medium-down, - .uls-mobile .show-for-large, - .uls-mobile .show-for-large-up, - .uls-mobile .show-for-xlarge { - display: none !important; - } -} -/* Small display targeting */ -@media only screen and (max-width: 767px) { - - .uls-mobile .show-for-small, - .uls-mobile .hide-for-medium, - .uls-mobile .show-for-medium-down, - .uls-mobile .hide-for-large, - .uls-mobile .hide-for-large-up, - .uls-mobile .hide-for-xlarge { - display: block !important; - } - .uls-mobile .hide-for-small, - .uls-mobile .show-for-medium, - .uls-mobile .hide-for-medium-down, - .uls-mobile .show-for-large, - .uls-mobile .show-for-large-up, - .uls-mobile .show-for-xlarge { - display: none !important; - } -} - -/* Orientation targeting */ -.uls-mobile .show-for-landscape, -.uls-mobile .hide-for-portrait { - display: block !important; -} - -.uls-mobile .hide-for-landscape, -.uls-mobile .show-for-portrait { - display: none !important; -} - -@media screen and (orientation: landscape) { - .uls-mobile .show-for-landscape, - .uls-mobile .hide-for-portrait { - display: block !important; - } - .uls-mobile .hide-for-landscape, - .uls-mobile .show-for-portrait { - display: none !important; - } -} - -@media screen and (orientation: portrait) { - .uls-mobile .show-for-portrait, - .uls-mobile .hide-for-landscape { - display: block !important; - } - .uls-mobile .hide-for-portrait, - .uls-mobile .show-for-landscape { - display: none !important; - } -} - -/* Touch-enabled device targeting */ -.uls-mobile .show-for-touch { - display: none !important; -} - -.uls-mobile .hide-for-touch { - display: block !important; -} - -.uls-mobile .touch .show-for-touch { - display: block !important; -} - -.uls-mobile .touch .hide-for-touch { - display: none !important; -} diff --git a/getfedora.org/static/fedora.gpg b/getfedora.org/static/fedora.gpg deleted file mode 100644 index 684a758..0000000 --- a/getfedora.org/static/fedora.gpg +++ /dev/null @@ -1,172 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQINBFturGcBEACv0xBo91V2n0uEC2vh69ywCiSyvUgN/AQH8EZpCVtM7NyjKgKm -bbY4G3R0M3ir1xXmvUDvK0493/qOiFrjkplvzXFTGpPTi0ypqGgxc5d0ohRA1M75 -L+0AIlXoOgHQ358/c4uO8X0JAA1NYxCkAW1KSJgFJ3RjukrfqSHWthS1d4o8fhHy -KJKEnirE5hHqB50dafXrBfgZdaOs3C6ppRIePFe2o4vUEapMTCHFw0woQR8Ah4/R -n7Z9G9Ln+0Cinmy0nbIDiZJ+pgLAXCOWBfDUzcOjDGKvcpoZharA07c0q1/5ojzO -4F0Fh4g/BUmtrASwHfcIbjHyCSr1j/3Iz883iy07gJY5Yhiuaqmp0o0f9fgHkG53 -2xCU1owmACqaIBNQMukvXRDtB2GJMuKa/asTZDP6R5re+iXs7+s9ohcRRAKGyAyc -YKIQKcaA+6M8T7/G+TPHZX6HJWqJJiYB+EC2ERblpvq9TPlLguEWcmvjbVc31nyq -SDoO3ncFWKFmVsbQPTbP+pKUmlLfJwtb5XqxNR5GEXSwVv4I7IqBmJz1MmRafnBZ -g0FJUtH668GnldO20XbnSVBr820F5SISMXVwCXDXEvGwwiB8Lt8PvqzXnGIFDAu3 -DlQI5sxSqpPVWSyw08ppKT2Tpmy8adiBotLfaCFl2VTHwOae48X2dMPBvQARAQAB -tDFGZWRvcmEgKDMwKSA8ZmVkb3JhLTMwLXByaW1hcnlAZmVkb3JhcHJvamVjdC5v -cmc+iQI4BBMBAgAiBQJbbqxnAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK -CRDvPBEfz8ZZudTnD/9170LL3nyTVUCFmBjT9wZ4gYnpwtKVPa/pKnxbbS+Bmmac -g9TrT9pZbqOHrNJLiZ3Zx1Hp+8uxr3Lo6kbYwImLhkOEDrf4aP17HfQ6VYFbQZI8 -f79OFxWJ7si9+3gfzeh9UYFEqOQfzIjLWFyfnas0OnV/P+RMQ1Zr+vPRqO7AR2va -N9wg+Xl7157dhXPCGYnGMNSoxCbpRs0JNlzvJMuAea5nTTznRaJZtK/xKsqLn51D -K07k9MHVFXakOH8QtMCUglbwfTfIpO5YRq5imxlWbqsYWVQy1WGJFyW6hWC0+RcJ -Ox5zGtOfi4/dN+xJ+ibnbyvy/il7Qm+vyFhCYqIPyS5m2UVJUuao3eApE38k78/o -8aQOTnFQZ+U1Sw+6woFTxjqRQBXlQm2+7Bt3bqGATg4sXXWPbmwdL87Ic+mxn/ml -SMfQux/5k6iAu1kQhwkO2YJn9eII6HIPkW+2m5N1JsUyJQe4cbtZE5Yh3TRA0dm7 -+zoBRfCXkOW4krchbgww/ptVmzMMP7GINJdROrJnsGl5FVeid9qHzV7aZycWSma7 -CxBYB1J8HCbty5NjtD6XMYRrMLxXugvX6Q4NPPH+2NKjzX4SIDejS6JjgrP3KA3O -pMuo7ZHMfveBngv8yP+ZD/1sS6l+dfExvdaJdOdgFCnp4p3gPbw5+Lv70HrMjJkC -DQRcat0DARAA1IRnwnz9Yo4oIAblW0f6QQ0ljAt01m3wvKbe34WZGK4pc31lDH07 -IpD8pkq4knDjVz+gzcmea+7YKyFXVayb0SKiBUTtJrn6fR8n1igzv/wrcqezkM2M -OjVbYTv2lqchXyaY+rOImbGBqn/YAclfG6wQfL/IxLArVTo9QVN2zGy5DLESPflo -i4w2Mr6KajQULiHvKIMUsaWHW1M+vo8c374UaAc1nYyE3f/xo3fdJJKwTjFpDi06 -jtd9zg9VjE9PBuTbkOCoY2LFb0mwaX3ZE3Dbj/IAT/S8QkA3PntXgIWfeYN6pFy3 -ihCvY/hfsLhvzqxAMQbLHAsV0VAd/EB+ghXt1MRqEjJwYvoxIYnLnaPiLaRTsu6z -2mMkYeD5ruEB3AvN2zY6fDSOs0x6wZlbj6pMTJ9OxjAEGr/XswV4+rpqk1+HFHbC -VGryayd7u609JYQXYhq0Pcz2y9O7tip/jlzwAt3Skn+xvE78DQHa8vXrBkqYt/Gm -tZskGFWbwJbCAZGzd329cLwyROXM1Yc8EO+1dreuo8XoNKPf9jmVR9wqMw9mY79v -Cx7lv450B7bENH1MkGEZh8TRFZFtdBhjO30MMc6cRRUtTv9lxJ3zLu8gR2bIC0qI -31HLdBYS4RDf4PyCDV/WQla8yufw3tuwjY2BNXIGA/5U5kNEso3ylcMAEQEAAbQx -RmVkb3JhICgzMSkgPGZlZG9yYS0zMS1wcmltYXJ5QGZlZG9yYXByb2plY3Qub3Jn -PokCPgQTAQIAKAIbDwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AFAlxq5E0FCRLP -D/0ACgkQUMs5CzwzWcQZgw//dCBcAHxXEKuRDZe/6NgmEPZNmnUx21eUaCDlgv6P -SOf27Z9cvFg4TzlDZrIG1Kkas+rK5VaZYPi5KSI+uz1SwwcKVWwiQvKNX87XdjK8 -lanb7uetllYVKKyCPolu536g9Mr+eZx/W/yUdapaFGvC6XisPOCYL8RecFX8kYnd -VoyNAwZNrWhUeMQn1OU29utn23RY+YgfcbJD+6DXktvfknw45Z8m7ZRaKq/VAJ2N -br4QT5Bpo+OUiZKXz/i/pBmF1WlHdvTP6vz7eOl9Sg76+mdJfG0lBJN833DXY7hI -bRwakstVDzwIpBl9UOcBnbu0e/pr/wEanyOjguOIqaDjDStQIruvrJWz2KYcF4oI -Us/cmLhtBHVre2pHykdEdOCrno+C1y1nMU0eJfFw804WIDz9IPs9F0CawJFYYkq8 -yAngtytRj0olLTQMUky/qlloML0MgDzaD1fzmJmPsFMVJygmaRFj5C+/ZYegjGyc -f85azjM0bpks2jpylvQDpYr4h+EY/PTpg4nwRLENAnsHRzfZcuoOGRSSRmFyeR02 -+Y3QbrUwt7Q37x/Ge3bVynQuIqiQiMY+vfF5/FI1Xn2UNp27+Xl3GS3x7b2zQU07 -9b7wVeBu2ohymEUo+x5sYSwWQvGP55hQHpjqDmA6UeXlJj5kmxWsqC30bBV5ghy7 -O3OZAg0EXVFWqwEQANYwGpi/8bWvg/DKI9AJ+Dl9cUZdXUUJnfaoyL2AtRO/UJfu -tjIfgieP3eiJz6W3WRDSRAKQg07BBzM6SbpcOQR6SYyseScmkUvCtMrgBLbxtgXZ -GMsz5An90ZcMw9iw/S2Qu+jFoev1ZNGrz0D4CY41xQBAgwmDcnFcABp8GLZSzNRQ -Q8hTfkzK58W3Z493WT/qFUA7xLZVPvZPFdJjsdrhfYnSkbNupDoOrcBXOiCyegiL -T0Dt9i61hk9VUAQZFSpq+XS2HwvK5lKEBJnfwJ0AcEy9ZXhtVmCF3/ANXl6/ctdQ -TSiK0sCo1J6IMneCspY3q/Sp1TSXdhrrSy6AAF3fFoT5E57yQMLLdaYBo7nVDzzR -kDaJc5MkU5uqQFM/2P35l5D4o0TxIGiIfUTJsq0FTwebKBm+7xkLVMpTIvmDAZQm -3y96uDLkHDdDtq/nbSw0YPdwhavh8EBVjB0GhlPxFyydTU8/rs2Y4YVzBIUn8umI -4wKlnUgG+M4LsrIoRljb/reSNbveYHs4c53XwEe0ZWQDdAB1WVxK6V7/PrxU4DLp -uKETqZ3E/bwPgg2y2zzDrKvgb7doQg3y7SpFCrrpGLmY5dPKV74425218aDdT2WC -JyDPqhWTXtFPSNX24vorjWwZnWwf/rJNdApqB0BivfDWLHYvjomDML7/7pJLABEB -AAG0MUZlZG9yYSAoMzIpIDxmZWRvcmEtMzItcHJpbWFyeUBmZWRvcmFwcm9qZWN0 -Lm9yZz6JAjgEEwECACIFAl1RVqsCGw8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheA -AAoJEGwTAm0SyUTQt0AP/Ap0Ay1/Ovs7bLTr+w4+etvcPf1jYNdsHzLSISZF0Evb -0Grlu3HCYCRrsllElUXE+w5WpnooBGNLT+gIGYlzSMJEA0UK0zhSNUdNKzGsl+4+ -R6W+uU0T21xHo4JGm6P89mBRrf2KJ8X8VNR8OCHhD3XGJCgup8HE4nOtq9Aegr1X -Osw1M67onqXjN4bNj+hyPoOlP7l91Q7/ceAYU2I1g8LoZXN6IDcABVHSwLIYQ26q -p2DBTFXcEiG3TkzlZx2/GDVT3HkjfKOQtDD6J29fil69OIKH3/S77iDzRxP/bULG -x3Hv4NUdp7BdsXztBAhw4CKeDRLlATruva49XGZbL/npMpSoOjI/xI2xXraVPaO6 -2yMt683FSTLTXWDnDdtzrVR5p4quu6sV1Gz5HAFWRea2qb+LqDRlNZnJYY7qAl34 -dYCpjU1iKrj5wy80tq2YDaw6gKxE2YT2rqMz8RJWBofyFKnwZwu7O33+vg9lkaXk -K9R6V06IPbbW7yvO4eYuzh2yDAkn2mAtPRxQCw6lsw8jQmkYg9DZIbrIrsuY7ocU -7FsCTPsgZS3SDLUzM9PIG+cH5aAPUj4hBdewluE/n5353eY6eqx3qgMz+CsoHOuG -hR6g1p1z27OOoqU6uat0hHcHPfxJKJaV17l+7rE+ol2YZlE2Ne1zImVtI9UMiWjH -mQINBEvSKUIBEADLGnUj24ZVKW7liFN/JA5CgtzlNnKs7sBg7fVbNWryiE3URbn1 -JXvrdwHtkKyY96/ifZ1Ld3lE2gOF61bGZ2CWwJNee76Sp9Z+isP8RQXbG5jwj/4B -M9HK7phktqFVJ8VbY2jfTjcfxRvGM8YBwXF8hx0CDZURAjvf1xRSQJ7iAo58qcHn -XtxOAvQmAbR9z6Q/h/D+Y/PhoIJp1OV4VNHCbCs9M7HUVBpgC53PDcTUQuwcgeY6 -pQgo9eT1eLNSZVrJ5Bctivl1UcD6P6CIGkkeT2gNhqindRPngUXGXW7Qzoefe+fV -QqJSm7Tq2q9oqVZ46J964waCRItRySpuW5dxZO34WM6wsw2BP2MlACbH4l3luqtp -Xo3Bvfnk+HAFH3HcMuwdaulxv7zYKXCfNoSfgrpEfo2Ex4Im/I3WdtwME/Gbnwdq -3VJzgAxLVFhczDHwNkjmIdPAlNJ9/ixRjip4dgZtW8VcBCrNoL+LhDrIfjvnLdRu -vBHy9P3sCF7FZycaHlMWP6RiLtHnEMGcbZ8QpQHi2dReU1wyr9QgguGU+jqSXYar -1yEcsdRGasppNIZ8+Qawbm/a4doT10TEtPArhSoHlwbvqTDYjtfV92lC/2iwgO6g -YgG9XrO4V8dV39Ffm7oLFfvTbg5mv4Q/E6AWo/gkjmtxkculbyAvjFtYAQARAQAB -tCFFUEVMICg2KSA8ZXBlbEBmZWRvcmFwcm9qZWN0Lm9yZz6JAjYEEwECACAFAkvS -KUICGw8GCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRA7Sd8qBgi4lR/GD/wLGPv9 -qO39eyb9NlrwfKdUEo1tHxKdrhNz+XYrO4yVDTBZRPSuvL2yaoeSIhQOKhNPfEgT -9mdsbsgcfmoHxmGVcn+lbheWsSvcgrXuz0gLt8TGGKGGROAoLXpuUsb1HNtKEOwP -Q4z1uQ2nOz5hLRyDOV0I2LwYV8BjGIjBKUMFEUxFTsL7XOZkrAg/WbTH2PW3hrfS -WtcRA7EYonI3B80d39ffws7SmyKbS5PmZjqOPuTvV2F0tMhKIhncBwoojWZPExft -HpKhzKVh8fdDO/3P1y1Fk3Cin8UbCO9MWMFNR27fVzCANlEPljsHA+3Ez4F7uboF -p0OOEov4Yyi4BEbgqZnthTG4ub9nyiupIZ3ckPHr3nVcDUGcL6lQD/nkmNVIeLYP -x1uHPOSlWfuojAYgzRH6LL7Idg4FHHBA0to7FW8dQXFIOyNiJFAOT2j8P5+tVdq8 -wB0PDSH8yRpn4HdJ9RYquau4OkjluxOWf0uRaS//SUcCZh+1/KBEOmcvBHYRZA5J -l/nakCgxGb2paQOzqqpOcHKvlyLuzO5uybMXaipLExTGJXBlXrbbASfXa/yGYSAG -iVrGz9CE6676dMlm8F+s3XXE13QZrXmjloc6jwOljnfAkjTGXjiB7OULESed96MR -XtfLk0W5Ab9pd7tKDR6QHI7rgHXfCopRnZ2VVZkCDQRSrmiEARAAtVKYV8DKggGq -z1B/2bDhbJWm3k1TtqQ5OWJzven/q4GQe8QKwTknkJOwfdIqkifOf3O9jgJ+Dl2L -0+t4Hwnl6SbOTO3pl5D7DUFlko7vfZVvgKkjZo2FoZkZS0RpdDju4CMI+++nSF73 -DDRZc0j49NDdsQKozG45Z1dp9mmwBOYKulaaj7xV1cn61Wv7mpaIA1Zn+odreEXa -Yn6vKkx7BxVN8aQs/k+v3RlihkONmUH02i5wzI06ALJmNAMnr5CG1+omVbcxr2p2 -KT3FluF9EQz3KanxTWZOuN8SOJbGfmNhK/WLuUv/MdJcvrZpiKJGhNMMG3VLu+NG -E2YwnrK6GFokYOc7kNsXysSaFeRPhIfrWMBgyZ+h31oUYJ7nUUcL7ieOc7WFbSrp -SsPEEKXdkk1q3EEAyWkVppzKKF/zwE04wgRMQfXZM9/A67r5OyJBzLbCKpZADkDH -bF9Xd06L+gRNlw4yBtMxcS3biRm1cHP+qyHPeU9OeY9+hM9B648XaUxjjh8UajCu -ZvX5RW2scbQ50u8O+1qs1ux4xaw9FXk8dr544xqnIRxEKXw6RTs2/C0xYYGInckT -VH5UGN+VizsyzVfqVd3kNyYNdVBcHpUjS6n0H7hURnPs3MJDYx4ecj75vaHUdQSH -6ierChjxm7TzV6OxETEcqVskc9M4tLcAEQEAAbQoRmVkb3JhIEVQRUwgKDcpIDxl -cGVsQGZlZG9yYXByb2plY3Qub3JnPokCOAQTAQIAIgUCUq5ohAIbDwYLCQgHAwIG -FQgCCQoLBBYCAwECHgECF4AACgkQai+uojUsZOXHxg/+LKaqbE47QzO6qcrSixyq -7mbb7loqreUX70/cMPRlFBTGeGWRl+J1F4OPaosQy2slkfHXRv7OZMjotwtLl/+o -p82mMkYPgYe9G66ilCteBdQa6z4tvXminxvhrjBbV3QRtmuzrT5sN8ripqvRKb+g -dJj+hOSknb0kUqiVrRnAOsEUv8A81yRDR6ea3vSLJtwmMnactBi0QOcKOHzwebi3 -VISxFA74diiv/3zI42t6NC/kjc/DdGg2cp+QMQlPUQdxB3E3nBYKMubpkY/fQWa3 -m0dTTvuIAa4ryH3bw+HyTXzQR18IUh/QAhgjbx511Yx0BfYh1gKSpESHofBa9p+X -bXyRBe0hF/Bm1+xW7FqNvZFzK1YDahzcg53wAVaD7m4EHbSWSZFWQJGh6zLvAMrc -E+tkOHjapiSNWlm2UDSOY1mKnOkSrgiuvxffarYRU/YCTte/skbi+lL9v74M1UdU -RncFSysJVIxjwI2H5aQkMFjAAEsYr/bj8mDx3BK0q20RtMIyHwEd77rNTkjsd8WR -2aVxX5kE7Az+81UTi81ffEdycBQMSeP8anjjeLwjxVOjrE95VkPMO4peaIWPecJr -o36+pZPPZBMyXTk83J+wwW1K7t9wkDBimdxL7UY7AuxQ2y9Ne6sUvmVQPxxpMn4r -uHKYFfFVJ26peXgGftS5eg+ZAg0EXPfO+wEQAMk4ghaWUa53Gem8meTFDPYK2hYj -uCh1WehyWt2XzeRWOpJCn7Z2DG4bmZSIANR9gdpFDPErDx5+5CfDHNT2RnvSeALG -2ZtBYaZSZ9JOGJqk7PTTTXz56jkwVpt3a92IajXL7nWbaxEOk3yp0JqpeSjrlzIy -4teuiMkci69ED/HuKo6tF/JrzHc7ELg8SCXmmAOc/ylUrSUtidwMRAI3voP25uFl -BaEhIX/Mkj57zTpXvWHN/Iv8y3eZCb+WL6VEpTblSyT11Zp/g0f/Bkcwg8CRUni4 -Pgf+5Lj3CpafKJNgZPuFRuJ5wXtyuEsKaVHO8lHyaRE/r/hP8Xe00M9Zl4M0QNUV -SRMUc1Tr+Hb47f3ww1j986HIpo0reecTSDpAnV04ffWVccBGWkU61a3dWZlTQmdY -t5h29qngR9/2pNZkmEjsKrRabwOAtSleA2WSaq68Ts/ZbkQCvYTkCopCgNt/D8aJ -Z1G8dYp40YxEucYjdC6hfdSkCVcPu/XdV1nE3J2+l7Klt/8B9HKsdEqGRSPdxTWl -iQzcM1kTvsLklR7r/SfFu3gRNRkFOAuBgkY/xzs9uRWc7oj8qAvWPD7sxboDPw7H -5FdkvIYxWZtb9MxzyFol8osyhSjdNWTyc+JSGg4LT+QjuP2KUWsHEFTl1S0XghMB -ZzzGcbqMmz8iy9GlABEBAAG0KEZlZG9yYSBFUEVMICg4KSA8ZXBlbEBmZWRvcmFw -cm9qZWN0Lm9yZz6JAjgEEwECACIFAlz3zvsCGw8GCwkIBwMCBhUIAgkKCwQWAgMB -Ah4BAheAAAoJECHqRasvhtahZqAP/jGctbCzfgYHJUNCSOmuTR9fsjKGmb9TsGwg -cqykcsv5jjq8AAZj/28y90TR9yv0STZmnvMTVFaZILPPNSBMboEWhMbUfgWGj/tn -wFcr+PJujBdJl+pedM5+FIVqXAN3CVIm99g1X0xvK9vE3yplFTXPs8RZmsjMUMNO -gVGTRHvXMemc9M0gnn9hdPA2pT07EgjyExCPi58XXXTjQAlBntuvevN6uXIE4H4l -3XNI9WsA+l4zImmlYUdIMAhYrrH5qbXdUgide2oH8LPgYEcsUrl3b8hiylXDjtKi -WPyOIUS2cCrr7UCrlYfeIHhsTZ7rPTQNIX3d+vA7JY3taY8ihzZCw1EmGB8kL6Kw -ZADDCrzEBscQF67IwbwZmPPGiGDQfhs5IS6NUtOMfXFsAbgOeFY7/VVctf4tcQvJ -w7xlBNyOP/gBAq6jjC8w+u/0DXr2gRMb5XBCU13vhUE8YK+GfPAZc1tMr8ofX5ZE -fRhJv7jV+UHc0qExJTp0YjRIa0jENIeFVU2bHb/peJP1T/OetmwbkrDychtsXP70 -wZRRaAkyx3VmX1HyDPtX1+mfsvvLkuEnwc4Iyxj9nv/sdSz638DUwjiDtDmDlS5J -l2CLTPG6SJa4KQt4CIA/jLvMorg6Mnrjg0NxYIdrfrOfBWaTPeLEvxDRq5HXk6qr -YGNH9/KimQINBFvrElgBEACjNft3anFHNzwHW6dzxGinWEzFin3xBUjhre7e23Dg -DRIceDtePOqXGnIN5yGGH4VZrEGHfjTPoCcrRSpM75ryPLa3Pi0UHXRso/OkO2ta -+VaQRlwU2WAYqd3g/eck+x7MZHuKKyfyxDSUywuJumWhIqeJLyG/J9e1riHwaxYw -tLDvHCAtK4osoJ6GZDx95Rr4El/N5CtZBlIzRQUJMo695MIxeKA6RmlQVp8mGPQm -20Hveo0kBsLYFJxTW4D+KnwpQr2mJLsEQnCgKcr8TF5hDowz8+o3wdUrfteiVfkd -X64kXJm85jaR/K0ubnv96iTxoeh2Wf2jNAn3EjKhPzEeYFI2gCm2tzwUEzSuOjtr -x7FqDp7/iJRANmKQJ9KzhCT5JLkeS5do8d196xiI79Zlx8ISQRvCNuu1Or7idwvI -gHy/+BCyPUARv430YvXU4d01FVKTlNrbRsq91SVojek4UXkAk9oh4d3Y/AQF1DLs -4nK1vBukwWIKwcfVA/RidSqXofx6pahTPvguTkAARhMEJPLtbQBzD5kqkdgdP/6s -7ziTwGkGO8iF0TvkCwMXWXHl1B/m6b3h/wWOIFNfAZ0FxZmmD5UhytjVjhdI7jiy -Zf6JjNupVCVx1eqMGZfm3jkZqzWOB9wrVrb6rtI25ZuoRQJ/idnXkxZmq4m1MCZb -CQARAQABtDVGZWRvcmEgKGlvdCAyMDE5KSA8ZmVkb3JhLWlvdC0yMDE5QGZlZG9y -YXByb2plY3Qub3JnPokCPgQTAQIAKAUCW+sSWAIbDwUJEw5BKAYLCQgHAwIGFQgC -CQoLBBYCAwECHgECF4AACgkQe7kHItu9z3xs8Q/9HqL76vo5xZjl78USwgX7t2f8 -Aa6sqD6OIV4V9KPCaNeqP8OF6LqYFxkv3GX3FMHGPHVKOBLQ6LvuGozcnnpZ3ypq -6ChAy2L4W7ytFggpluArxSN5jmHoOXO51wPDPCSjd4rRi1+XnMDiA3VIk0vTcGHU -K13JgvzuUrIbFYhVwwCn8Rt0GvCWVLyvKRbykN3xgFmromREKdDCUymYS/u4hXw5 -xQt2AE9IgX9puLlGH5AdbJumMipcaI9erH/KVoBvtAHA5ozkL0PDocRaWA/W+i8r -XEeI8TJBA7Q/Xb/L12aIOCzeyEKGP911iR3/99UGMgfswKvF4WT4KdAV2VZoPizu -0Am2MUYhoexdnHY6GtU1UKcWt2hW7HmGBCZVdVpUF3W/gebe+ahLPT9UhqNTin2v -w7MxMKy2uWPZri76R165F3TP434dZLNfkNa1rdtQrRaD1Be9/hAQthYWKoCFowbM -LAr1BgzkUs97arxBTzqkr9GTCy5CX+nObIbwkrFYugRfA4bSzNFSpCo71cudqNwK -JEw65lF90+T5ma7lM6ZwijH1A9pYeGQS0eUOrV/0VTsxXQOyS6Mcfper+dkOpypZ -dSnJGzid9HPUSUdjI94wtRYInrcD09v5OnJcoxUDVVjVhH4FIqKVYstucn/LB67n -nn+55uTOKdm729ex0UI= -=FHrh ------END PGP PUBLIC KEY BLOCK----- diff --git a/getfedora.org/static/firefox/attribution.html b/getfedora.org/static/firefox/attribution.html deleted file mode 100644 index 4eb1178..0000000 --- a/getfedora.org/static/firefox/attribution.html +++ /dev/null @@ -1,20 +0,0 @@ - - -The binary version of Mozilla Firefox 3.0 included in this -distribution is licensed to you under the same free software/open -source licensing terms that apply to the corresponding source code -version. Those licensing terms do not grant any right to use -trademarks, service marks, or logos of the Mozilla Foundation or its -licensors. - -You may not remove or alter any trademark, logo, copyright or other -legal notice in or on the accompanying binary version of Mozilla -Firefox. - -Nothing in this notice shall be understood to limit any rights -granted to you under free software/open source licenses applicable to -source or binary versions of Mozilla Firefox. In the case of any -conflict between this notice and those applicable licenses, the -latter shall control. - - diff --git a/getfedora.org/static/firefox/index.html b/getfedora.org/static/firefox/index.html deleted file mode 100644 index be4f51d..0000000 --- a/getfedora.org/static/firefox/index.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - Welcome to Mozilla Firefox - - - - -
      - - - -
      -

      Welcome to Mozilla Firefox

      -

      The accompanying version of Mozilla Firefox utilizes website information services ("Services"), such as safe-browsing features, which are provided by the Mozilla Corporation and made available to you under additional terms. By using the Services, you consent to the terms of the referenced Mozilla Firefox Website Services Agreement. If you do not agree to these terms, do not use the Services and disable the Services in Edit > Preferences > Security and uncheck the options for both: "Tell me if the site I'm visiting is a suspected attack site" and "Tell me if the site I'm visiting is a suspected forgery".

      - -
      -
      -
      - - -
      - - diff --git a/getfedora.org/static/firefox/website-services-agreement.html b/getfedora.org/static/firefox/website-services-agreement.html deleted file mode 100644 index 392c7fd..0000000 --- a/getfedora.org/static/firefox/website-services-agreement.html +++ /dev/null @@ -1,29 +0,0 @@ - - -MOZILLA FIREFOX WEBSITE SERVICES AGREEMENT - - - -

      MOZILLA FIREFOX WEBSITE SERVICES AGREEMENT

      -

      Version 3.0, June 2008

      -

      During the Mozilla Firefox installation process, and at later times, you may be given the option of installing additional components from third-party software providers. The installation and use of those third-party components may be governed by additional license agreements.

      -

      In this Mozilla Firefox Website Services Agreement ("Agreement"), the accompanying executable version of Mozilla Firefox shall be referred to as "the Product".

      -

      The Product utilizes website information services ("Services"), such as safe-browsing features, which are provided by the Mozilla Corporation ("Mozilla") and made available to you subject to the terms below. By using the Services, you consent to the terms of this Agreement. If you do not agree to the terms of this Agreement, do not use the Services and disable the Services in the preferences/security menu.

      -

      1. USE OF SERVICES. Mozilla permits you to use the Services via the Product. This Agreement will also govern the use of Services made available to you as a result of your installing any executable software upgrades to the Product provided to you by Red Hat, Inc., where those Services replace and/or supplement the Services provided through use of the Product. In such a case, "the Product" shall also refer to such installed upgrades. However, if such upgrades are accompanied by a separate agreement from Mozilla, the terms of that agreement will govern.

      -

      2. TERMINATION. If you breach this Agreement your right to use the Services will terminate immediately and without notice, but all provisions of this Agreement except the Use of Services (Paragraph 1) will survive termination and continue in effect.

      -

      3. PROPRIETARY RIGHTS. Subject to this Agreement and to all applicable licensing terms governing your use of the Product, Mozilla, for itself and on behalf of its licensors, hereby reserves all intellectual property rights in the Services, except for the rights expressly granted in this Agreement. You may not remove or alter any trademark, logo, copyright or other proprietary notice in or on the Product. This agreement does not grant you any right to use the trademarks, service marks or logos of Mozilla or its licensors. Nothing in this Agreement shall be construed to limit any rights granted under open source licenses applicable to the Product and to corresponding source code versions of the Product.

      -

      4. PRIVACY POLICY. The Mozilla Firefox Privacy Policy is made available online at http://www.mozilla.com/legal/privacy/, as that policy may be updated from time to time.

      -

      5. WEBSITE INFORMATION SERVICES. Mozilla and its contributors, licensors and partners work to provide the most accurate and up-to-date phishing and malware information. However, they cannot guarantee that this information is comprehensive and error-free: some risky sites may not be identified, and some safe sites may be identified in error.

      -

      6. DISCLAIMER OF WARRANTY. THE PRODUCT AND SERVICES ARE PROVIDED "AS IS" WITH ALL FAULTS. TO THE EXTENT PERMITTED BY LAW, MOZILLA AND MOZILLA'S DISTRIBUTORS, AND LICENSORS HEREBY DISCLAIM ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES THAT THE PRODUCT AND SERVICES ARE FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE AND NON-INFRINGING. YOU BEAR THE ENTIRE RISK AS TO SELECTING THE PRODUCT AND SERVICES FOR YOUR PURPOSES AND AS TO THE QUALITY AND PERFORMANCE OF THE PRODUCT AND SERVICES. THIS LIMITATION WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF IMPLIED WARRANTIES, SO THIS DISCLAIMER MAY NOT APPLY TO YOU.

      -

      7. LIMITATION OF LIABILITY. EXCEPT AS REQUIRED BY LAW, MOZILLA AND ITS DISTRIBUTORS, DIRECTORS, LICENSORS, CONTRIBUTORS AND AGENTS (COLLECTIVELY, THE "MOZILLA GROUP") WILL NOT BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES ARISING OUT OF OR IN ANY WAY RELATING TO THIS AGREEMENT OR THE USE OF OR INABILITY TO USE THE PRODUCT AND THE SERVICES, INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOST PROFITS, LOSS OF DATA, AND COMPUTER FAILURE OR MALFUNCTION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND REGARDLESS OF THE THEORY (CONTRACT, TORT OR OTHERWISE) UPON WHICH SUCH CLAIM IS BASED. THE MOZILLA GROUP'S COLLECTIVE LIABILITY UNDER THIS AGREEMENT WILL NOT EXCEED THE GREATER OF $500 (FIVE HUNDRED DOLLARS) AND THE FEES PAID BY YOU UNDER THE LICENSE (IF ANY). SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL, CONSEQUENTIAL OR SPECIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.

      -

      8. U.S. GOVERNMENT END-USERS. This Product is a "commercial item," as that term is defined in 48 C.F.R. 2.101, consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995) and 48 C.F.R. 227.7202 (June 1995). Consistent with 48 C.F.R. 12.212, 48 C.F.R. 27.405(b)(2) (June 1998) and 48 C.F.R. 227.7202, all U.S. Government End Users acquire the Product with only those rights as set forth therein.

      -

      9. MISCELLANEOUS. (a) This Agreement constitutes the entire agreement between Mozilla and you concerning the subject matter hereof, and it may only be modified by a written amendment signed by an authorized executive of Mozilla. (b) Except to the extent applicable law, if any, provides otherwise, this Agreement will be governed by the laws of the state of California, U.S.A., excluding its conflict of law provisions. (c) This Agreement will not be governed by the United Nations Convention on Contracts for the International Sale of Goods. (d) If any part of this Agreement is held invalid or unenforceable, that part will be construed to reflect the parties' original intent, and the remaining portions will remain in full force and effect. (e) A waiver by either party of any term or condition of this Agreement or any breach thereof, in any one instance, will not waive such term or condition or any subsequent breach thereof. (f) Except as required by law, the controlling language of this Agreement is English. (g) You may assign your rights under this Agreement to any party that consents to, and agrees to be bound by, its terms; the Mozilla Corporation may assign its rights under this Agreement without condition. (h) This Agreement will be binding upon and inure to the benefit of the parties, their successors and permitted assigns.

      - - - diff --git a/getfedora.org/static/fmw-version.json b/getfedora.org/static/fmw-version.json deleted file mode 100644 index 9563d00..0000000 --- a/getfedora.org/static/fmw-version.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "win32": { - "version": "4.1.0", - "fileUrl": "https://getfedora.org/fmw/FedoraMediaWriter-win32-4.1.0.exe", - "url": "https://getfedora.org/en/workstation/download/" - }, - "osx": { - "version": "4.1.0", - "fileUrl": "https://getfedora.org/fmw/FedoraMediaWriter-osx-4.1.0.dmg", - "url": "https://getfedora.org/en/workstation/download/" - } -} diff --git a/getfedora.org/static/fonts/Comfortaa_Bold-webfont.eot b/getfedora.org/static/fonts/Comfortaa_Bold-webfont.eot deleted file mode 100644 index 5f40449..0000000 Binary files a/getfedora.org/static/fonts/Comfortaa_Bold-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/fonts/Comfortaa_Regular-webfont.eot b/getfedora.org/static/fonts/Comfortaa_Regular-webfont.eot deleted file mode 100644 index 224ec8e..0000000 Binary files a/getfedora.org/static/fonts/Comfortaa_Regular-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/fonts/Comfortaa_Regular-webfont.ttf b/getfedora.org/static/fonts/Comfortaa_Regular-webfont.ttf deleted file mode 100644 index e1020f0..0000000 Binary files a/getfedora.org/static/fonts/Comfortaa_Regular-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/fonts/Comfortaa_Regular-webfont.woff b/getfedora.org/static/fonts/Comfortaa_Regular-webfont.woff deleted file mode 100644 index f72a918..0000000 Binary files a/getfedora.org/static/fonts/Comfortaa_Regular-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/fonts/Comfortaa_Thin-webfont.eot b/getfedora.org/static/fonts/Comfortaa_Thin-webfont.eot deleted file mode 100644 index 46a6295..0000000 Binary files a/getfedora.org/static/fonts/Comfortaa_Thin-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/fonts/FontAwesome.otf b/getfedora.org/static/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f..0000000 Binary files a/getfedora.org/static/fonts/FontAwesome.otf and /dev/null differ diff --git a/getfedora.org/static/fonts/chewy-webfont.eot b/getfedora.org/static/fonts/chewy-webfont.eot deleted file mode 100644 index ddaff64..0000000 Binary files a/getfedora.org/static/fonts/chewy-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/fonts/chewy-webfont.ttf b/getfedora.org/static/fonts/chewy-webfont.ttf deleted file mode 100644 index e63adfa..0000000 Binary files a/getfedora.org/static/fonts/chewy-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/fonts/chewy-webfont.woff b/getfedora.org/static/fonts/chewy-webfont.woff deleted file mode 100644 index 51ced5f..0000000 Binary files a/getfedora.org/static/fonts/chewy-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/fonts/fontawesome-webfont.eot b/getfedora.org/static/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca..0000000 Binary files a/getfedora.org/static/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/getfedora.org/static/fonts/fontawesome-webfont.svg b/getfedora.org/static/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845..0000000 --- a/getfedora.org/static/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getfedora.org/static/fonts/fontawesome-webfont.ttf b/getfedora.org/static/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2..0000000 Binary files a/getfedora.org/static/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/getfedora.org/static/fonts/fontawesome-webfont.woff b/getfedora.org/static/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a..0000000 Binary files a/getfedora.org/static/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/getfedora.org/static/fonts/fontawesome-webfont.woff2 b/getfedora.org/static/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc6..0000000 Binary files a/getfedora.org/static/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/getfedora.org/static/hotspot.txt b/getfedora.org/static/hotspot.txt deleted file mode 100644 index d86bac9..0000000 --- a/getfedora.org/static/hotspot.txt +++ /dev/null @@ -1 +0,0 @@ -OK diff --git a/getfedora.org/static/images/3up-logos.png b/getfedora.org/static/images/3up-logos.png deleted file mode 100644 index 10a32ee..0000000 Binary files a/getfedora.org/static/images/3up-logos.png and /dev/null differ diff --git a/getfedora.org/static/images/404-blue-bar.png b/getfedora.org/static/images/404-blue-bar.png deleted file mode 100644 index 8fc7fce..0000000 Binary files a/getfedora.org/static/images/404-blue-bar.png and /dev/null differ diff --git a/getfedora.org/static/images/4f-features.png b/getfedora.org/static/images/4f-features.png deleted file mode 100644 index 5833f95..0000000 Binary files a/getfedora.org/static/images/4f-features.png and /dev/null differ diff --git a/getfedora.org/static/images/4f-first.png b/getfedora.org/static/images/4f-first.png deleted file mode 100644 index 4a8e5a9..0000000 Binary files a/getfedora.org/static/images/4f-first.png and /dev/null differ diff --git a/getfedora.org/static/images/4f-freedom.png b/getfedora.org/static/images/4f-freedom.png deleted file mode 100644 index 4939dda..0000000 Binary files a/getfedora.org/static/images/4f-freedom.png and /dev/null differ diff --git a/getfedora.org/static/images/4f-friends.png b/getfedora.org/static/images/4f-friends.png deleted file mode 100644 index cee4043..0000000 Binary files a/getfedora.org/static/images/4f-friends.png and /dev/null differ diff --git a/getfedora.org/static/images/4features.png b/getfedora.org/static/images/4features.png deleted file mode 100644 index dd8bb30..0000000 Binary files a/getfedora.org/static/images/4features.png and /dev/null differ diff --git a/getfedora.org/static/images/4first.png b/getfedora.org/static/images/4first.png deleted file mode 100644 index 9cb8557..0000000 Binary files a/getfedora.org/static/images/4first.png and /dev/null differ diff --git a/getfedora.org/static/images/4freedom.png b/getfedora.org/static/images/4freedom.png deleted file mode 100644 index 426a4a2..0000000 Binary files a/getfedora.org/static/images/4freedom.png and /dev/null differ diff --git a/getfedora.org/static/images/4friends.png b/getfedora.org/static/images/4friends.png deleted file mode 100644 index e8dd4dd..0000000 Binary files a/getfedora.org/static/images/4friends.png and /dev/null differ diff --git a/getfedora.org/static/images/arm-logo.png b/getfedora.org/static/images/arm-logo.png deleted file mode 100644 index a196a5c..0000000 Binary files a/getfedora.org/static/images/arm-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/arrow-down.png b/getfedora.org/static/images/arrow-down.png deleted file mode 100644 index d9634ab..0000000 Binary files a/getfedora.org/static/images/arrow-down.png and /dev/null differ diff --git a/getfedora.org/static/images/arrow-left.png b/getfedora.org/static/images/arrow-left.png deleted file mode 100644 index 5304e95..0000000 Binary files a/getfedora.org/static/images/arrow-left.png and /dev/null differ diff --git a/getfedora.org/static/images/arrow.png b/getfedora.org/static/images/arrow.png deleted file mode 100644 index 13ca8cb..0000000 Binary files a/getfedora.org/static/images/arrow.png and /dev/null differ diff --git a/getfedora.org/static/images/arrow_down.png b/getfedora.org/static/images/arrow_down.png deleted file mode 100644 index 2d42218..0000000 Binary files a/getfedora.org/static/images/arrow_down.png and /dev/null differ diff --git a/getfedora.org/static/images/arrow_up.png b/getfedora.org/static/images/arrow_up.png deleted file mode 100644 index 178416a..0000000 Binary files a/getfedora.org/static/images/arrow_up.png and /dev/null differ diff --git a/getfedora.org/static/images/askfedora.png b/getfedora.org/static/images/askfedora.png deleted file mode 100644 index b7a7660..0000000 Binary files a/getfedora.org/static/images/askfedora.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic-head-logo.png b/getfedora.org/static/images/atomic-head-logo.png deleted file mode 100644 index 8c13949..0000000 Binary files a/getfedora.org/static/images/atomic-head-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic-logo.png b/getfedora.org/static/images/atomic-logo.png deleted file mode 100644 index c2efc5a..0000000 Binary files a/getfedora.org/static/images/atomic-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic-main.png b/getfedora.org/static/images/atomic-main.png deleted file mode 100644 index bbccd12..0000000 Binary files a/getfedora.org/static/images/atomic-main.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/atomic-cli.png b/getfedora.org/static/images/atomic/atomic-cli.png deleted file mode 100644 index cad1732..0000000 Binary files a/getfedora.org/static/images/atomic/atomic-cli.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/atomic-ostree.png b/getfedora.org/static/images/atomic/atomic-ostree.png deleted file mode 100644 index c34fdcf..0000000 Binary files a/getfedora.org/static/images/atomic/atomic-ostree.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/atomic-splash.jpg b/getfedora.org/static/images/atomic/atomic-splash.jpg deleted file mode 100644 index 8391e9c..0000000 Binary files a/getfedora.org/static/images/atomic/atomic-splash.jpg and /dev/null differ diff --git a/getfedora.org/static/images/atomic/cameron-headershot.jpg b/getfedora.org/static/images/atomic/cameron-headershot.jpg deleted file mode 100644 index 62b803d..0000000 Binary files a/getfedora.org/static/images/atomic/cameron-headershot.jpg and /dev/null differ diff --git a/getfedora.org/static/images/atomic/cloud-pattern.png b/getfedora.org/static/images/atomic/cloud-pattern.png deleted file mode 100644 index 4c3f79a..0000000 Binary files a/getfedora.org/static/images/atomic/cloud-pattern.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/cloud-splash.jpg b/getfedora.org/static/images/atomic/cloud-splash.jpg deleted file mode 100644 index c51f331..0000000 Binary files a/getfedora.org/static/images/atomic/cloud-splash.jpg and /dev/null differ diff --git a/getfedora.org/static/images/atomic/kubernetes.png b/getfedora.org/static/images/atomic/kubernetes.png deleted file mode 100644 index d63d9d9..0000000 Binary files a/getfedora.org/static/images/atomic/kubernetes.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/major-headershot.jpg b/getfedora.org/static/images/atomic/major-headershot.jpg deleted file mode 100644 index 51b70e1..0000000 Binary files a/getfedora.org/static/images/atomic/major-headershot.jpg and /dev/null differ diff --git a/getfedora.org/static/images/atomic/minimize-vice.png b/getfedora.org/static/images/atomic/minimize-vice.png deleted file mode 100644 index 3ab71ee..0000000 Binary files a/getfedora.org/static/images/atomic/minimize-vice.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/openshift.png b/getfedora.org/static/images/atomic/openshift.png deleted file mode 100644 index 1e5da7b..0000000 Binary files a/getfedora.org/static/images/atomic/openshift.png and /dev/null differ diff --git a/getfedora.org/static/images/atomic/openstack.png b/getfedora.org/static/images/atomic/openstack.png deleted file mode 100644 index a94a569..0000000 Binary files a/getfedora.org/static/images/atomic/openstack.png and /dev/null differ diff --git a/getfedora.org/static/images/atomicgraphic.png b/getfedora.org/static/images/atomicgraphic.png deleted file mode 100644 index 51df7dd..0000000 Binary files a/getfedora.org/static/images/atomicgraphic.png and /dev/null differ diff --git a/getfedora.org/static/images/banners/f23alpha.png b/getfedora.org/static/images/banners/f23alpha.png deleted file mode 100644 index 7ed0f93..0000000 Binary files a/getfedora.org/static/images/banners/f23alpha.png and /dev/null differ diff --git a/getfedora.org/static/images/banners/f23beta.png b/getfedora.org/static/images/banners/f23beta.png deleted file mode 100644 index 570b70b..0000000 Binary files a/getfedora.org/static/images/banners/f23beta.png and /dev/null differ diff --git a/getfedora.org/static/images/banners/f24alpha.png b/getfedora.org/static/images/banners/f24alpha.png deleted file mode 100644 index 701a11b..0000000 Binary files a/getfedora.org/static/images/banners/f24alpha.png and /dev/null differ diff --git a/getfedora.org/static/images/banners/f24beta.png b/getfedora.org/static/images/banners/f24beta.png deleted file mode 100644 index c46751f..0000000 Binary files a/getfedora.org/static/images/banners/f24beta.png and /dev/null differ diff --git a/getfedora.org/static/images/bg_main-download-section.png b/getfedora.org/static/images/bg_main-download-section.png deleted file mode 100644 index cdff74b..0000000 Binary files a/getfedora.org/static/images/bg_main-download-section.png and /dev/null differ diff --git a/getfedora.org/static/images/bg_yellow-wash.png b/getfedora.org/static/images/bg_yellow-wash.png deleted file mode 100644 index 1cdba90..0000000 Binary files a/getfedora.org/static/images/bg_yellow-wash.png and /dev/null differ diff --git a/getfedora.org/static/images/blue-pattern.png b/getfedora.org/static/images/blue-pattern.png deleted file mode 100755 index 86fb8fd..0000000 Binary files a/getfedora.org/static/images/blue-pattern.png and /dev/null differ diff --git a/getfedora.org/static/images/border-left.png b/getfedora.org/static/images/border-left.png deleted file mode 100644 index 6f1fe91..0000000 Binary files a/getfedora.org/static/images/border-left.png and /dev/null differ diff --git a/getfedora.org/static/images/border-right.png b/getfedora.org/static/images/border-right.png deleted file mode 100644 index d4d41d7..0000000 Binary files a/getfedora.org/static/images/border-right.png and /dev/null differ diff --git a/getfedora.org/static/images/brushed.png b/getfedora.org/static/images/brushed.png deleted file mode 100644 index 697f8b5..0000000 Binary files a/getfedora.org/static/images/brushed.png and /dev/null differ diff --git a/getfedora.org/static/images/cardboard_flat.png b/getfedora.org/static/images/cardboard_flat.png deleted file mode 100644 index 1ec84ba..0000000 Binary files a/getfedora.org/static/images/cardboard_flat.png and /dev/null differ diff --git a/getfedora.org/static/images/cinnamon.png b/getfedora.org/static/images/cinnamon.png deleted file mode 100644 index d842820..0000000 Binary files a/getfedora.org/static/images/cinnamon.png and /dev/null differ diff --git a/getfedora.org/static/images/clear.png b/getfedora.org/static/images/clear.png deleted file mode 100644 index f900e7d..0000000 Binary files a/getfedora.org/static/images/clear.png and /dev/null differ diff --git a/getfedora.org/static/images/clear.svg b/getfedora.org/static/images/clear.svg deleted file mode 100644 index 6ca59c2..0000000 --- a/getfedora.org/static/images/clear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/getfedora.org/static/images/close.png b/getfedora.org/static/images/close.png deleted file mode 100644 index 84631c3..0000000 Binary files a/getfedora.org/static/images/close.png and /dev/null differ diff --git a/getfedora.org/static/images/close.svg b/getfedora.org/static/images/close.svg deleted file mode 100644 index b39a0ff..0000000 --- a/getfedora.org/static/images/close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/getfedora.org/static/images/cloud-header.png b/getfedora.org/static/images/cloud-header.png deleted file mode 100644 index f171284..0000000 Binary files a/getfedora.org/static/images/cloud-header.png and /dev/null differ diff --git a/getfedora.org/static/images/cloud-logo-main.png b/getfedora.org/static/images/cloud-logo-main.png deleted file mode 100644 index f15bab4..0000000 Binary files a/getfedora.org/static/images/cloud-logo-main.png and /dev/null differ diff --git a/getfedora.org/static/images/cloud-logo.png b/getfedora.org/static/images/cloud-logo.png deleted file mode 100644 index 1bd3be9..0000000 Binary files a/getfedora.org/static/images/cloud-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/clouds.jpg b/getfedora.org/static/images/clouds.jpg deleted file mode 100644 index 2bb1ab4..0000000 Binary files a/getfedora.org/static/images/clouds.jpg and /dev/null differ diff --git a/getfedora.org/static/images/color-cloud.png b/getfedora.org/static/images/color-cloud.png deleted file mode 100644 index 9b958fc..0000000 Binary files a/getfedora.org/static/images/color-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/color-server.png b/getfedora.org/static/images/color-server.png deleted file mode 100644 index df89b86..0000000 Binary files a/getfedora.org/static/images/color-server.png and /dev/null differ diff --git a/getfedora.org/static/images/color-workstation.png b/getfedora.org/static/images/color-workstation.png deleted file mode 100644 index 776696b..0000000 Binary files a/getfedora.org/static/images/color-workstation.png and /dev/null differ diff --git a/getfedora.org/static/images/community.jpg b/getfedora.org/static/images/community.jpg deleted file mode 100644 index 46a890f..0000000 Binary files a/getfedora.org/static/images/community.jpg and /dev/null differ diff --git a/getfedora.org/static/images/darktriangles.png b/getfedora.org/static/images/darktriangles.png deleted file mode 100644 index 8b1d392..0000000 Binary files a/getfedora.org/static/images/darktriangles.png and /dev/null differ diff --git a/getfedora.org/static/images/docs-book.png b/getfedora.org/static/images/docs-book.png deleted file mode 100644 index eb07a53..0000000 Binary files a/getfedora.org/static/images/docs-book.png and /dev/null differ diff --git a/getfedora.org/static/images/downloadicon.svg b/getfedora.org/static/images/downloadicon.svg deleted file mode 100644 index 23f04cf..0000000 --- a/getfedora.org/static/images/downloadicon.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/getfedora.org/static/images/favicon.ico b/getfedora.org/static/images/favicon.ico deleted file mode 100644 index a912017..0000000 Binary files a/getfedora.org/static/images/favicon.ico and /dev/null differ diff --git a/getfedora.org/static/images/fedora-logo-27.png b/getfedora.org/static/images/fedora-logo-27.png deleted file mode 100644 index d41b875..0000000 Binary files a/getfedora.org/static/images/fedora-logo-27.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora-logo-fiv.png b/getfedora.org/static/images/fedora-logo-fiv.png deleted file mode 100644 index 12a5bd5..0000000 Binary files a/getfedora.org/static/images/fedora-logo-fiv.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora-logo.png b/getfedora.org/static/images/fedora-logo.png deleted file mode 100644 index 7f6af68..0000000 Binary files a/getfedora.org/static/images/fedora-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora-logotext.png b/getfedora.org/static/images/fedora-logotext.png deleted file mode 100644 index 3f1bdb6..0000000 Binary files a/getfedora.org/static/images/fedora-logotext.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora.png b/getfedora.org/static/images/fedora.png deleted file mode 100644 index c57ecde..0000000 Binary files a/getfedora.org/static/images/fedora.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora_infinity_140x140.png b/getfedora.org/static/images/fedora_infinity_140x140.png deleted file mode 100644 index eeeb70c..0000000 Binary files a/getfedora.org/static/images/fedora_infinity_140x140.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora_infinity_32x32.png b/getfedora.org/static/images/fedora_infinity_32x32.png deleted file mode 100644 index 3d46bf0..0000000 Binary files a/getfedora.org/static/images/fedora_infinity_32x32.png and /dev/null differ diff --git a/getfedora.org/static/images/fedora_infinity_64x64.png b/getfedora.org/static/images/fedora_infinity_64x64.png deleted file mode 100644 index 34c7062..0000000 Binary files a/getfedora.org/static/images/fedora_infinity_64x64.png and /dev/null differ diff --git a/getfedora.org/static/images/footer-redhat-logo.png b/getfedora.org/static/images/footer-redhat-logo.png deleted file mode 100644 index de23243..0000000 Binary files a/getfedora.org/static/images/footer-redhat-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/gradient_bg.png b/getfedora.org/static/images/gradient_bg.png deleted file mode 100644 index 89de957..0000000 Binary files a/getfedora.org/static/images/gradient_bg.png and /dev/null differ diff --git a/getfedora.org/static/images/grayscale-pattern.png b/getfedora.org/static/images/grayscale-pattern.png deleted file mode 100644 index c4cadaf..0000000 Binary files a/getfedora.org/static/images/grayscale-pattern.png and /dev/null differ diff --git a/getfedora.org/static/images/grey-pattern.png b/getfedora.org/static/images/grey-pattern.png deleted file mode 100644 index 615ab31..0000000 Binary files a/getfedora.org/static/images/grey-pattern.png and /dev/null differ diff --git a/getfedora.org/static/images/greybg.png b/getfedora.org/static/images/greybg.png deleted file mode 100644 index ba5c99e..0000000 Binary files a/getfedora.org/static/images/greybg.png and /dev/null differ diff --git a/getfedora.org/static/images/icon-language.png b/getfedora.org/static/images/icon-language.png deleted file mode 100644 index d1f1317..0000000 Binary files a/getfedora.org/static/images/icon-language.png and /dev/null differ diff --git a/getfedora.org/static/images/icon-language.svg b/getfedora.org/static/images/icon-language.svg deleted file mode 100644 index 9f439be..0000000 --- a/getfedora.org/static/images/icon-language.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/getfedora.org/static/images/kde.png b/getfedora.org/static/images/kde.png deleted file mode 100644 index 4a9e806..0000000 Binary files a/getfedora.org/static/images/kde.png and /dev/null differ diff --git a/getfedora.org/static/images/labs-logo.png b/getfedora.org/static/images/labs-logo.png deleted file mode 100644 index 7e57383..0000000 Binary files a/getfedora.org/static/images/labs-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/laptop.png b/getfedora.org/static/images/laptop.png deleted file mode 100644 index b0847ef..0000000 Binary files a/getfedora.org/static/images/laptop.png and /dev/null differ diff --git a/getfedora.org/static/images/line-bottom.png b/getfedora.org/static/images/line-bottom.png deleted file mode 100644 index acb4cbc..0000000 Binary files a/getfedora.org/static/images/line-bottom.png and /dev/null differ diff --git a/getfedora.org/static/images/line.png b/getfedora.org/static/images/line.png deleted file mode 100644 index 6c111c3..0000000 Binary files a/getfedora.org/static/images/line.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-color-atomic.png b/getfedora.org/static/images/logo-color-atomic.png deleted file mode 100644 index aff4111..0000000 Binary files a/getfedora.org/static/images/logo-color-atomic.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-color-cloud.png b/getfedora.org/static/images/logo-color-cloud.png deleted file mode 100644 index 30781d7..0000000 Binary files a/getfedora.org/static/images/logo-color-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-color-server.png b/getfedora.org/static/images/logo-color-server.png deleted file mode 100644 index f242a63..0000000 Binary files a/getfedora.org/static/images/logo-color-server.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-color-workstation.png b/getfedora.org/static/images/logo-color-workstation.png deleted file mode 100644 index 7b0ef24..0000000 Binary files a/getfedora.org/static/images/logo-color-workstation.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-grey-cloud.png b/getfedora.org/static/images/logo-grey-cloud.png deleted file mode 100644 index c28d614..0000000 Binary files a/getfedora.org/static/images/logo-grey-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-grey-cloud@2x.png b/getfedora.org/static/images/logo-grey-cloud@2x.png deleted file mode 100644 index 8d03d29..0000000 Binary files a/getfedora.org/static/images/logo-grey-cloud@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-grey-server.png b/getfedora.org/static/images/logo-grey-server.png deleted file mode 100644 index fd70146..0000000 Binary files a/getfedora.org/static/images/logo-grey-server.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-grey-server@2x.png b/getfedora.org/static/images/logo-grey-server@2x.png deleted file mode 100644 index 674da07..0000000 Binary files a/getfedora.org/static/images/logo-grey-server@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-grey-workstation.png b/getfedora.org/static/images/logo-grey-workstation.png deleted file mode 100644 index d85c6f0..0000000 Binary files a/getfedora.org/static/images/logo-grey-workstation.png and /dev/null differ diff --git a/getfedora.org/static/images/logo-grey-workstation@2x.png b/getfedora.org/static/images/logo-grey-workstation@2x.png deleted file mode 100644 index 9561b72..0000000 Binary files a/getfedora.org/static/images/logo-grey-workstation@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/logo.png b/getfedora.org/static/images/logo.png deleted file mode 100644 index 4a8b36c..0000000 Binary files a/getfedora.org/static/images/logo.png and /dev/null differ diff --git a/getfedora.org/static/images/lxde.png b/getfedora.org/static/images/lxde.png deleted file mode 100644 index 3d06212..0000000 Binary files a/getfedora.org/static/images/lxde.png and /dev/null differ diff --git a/getfedora.org/static/images/magazine.png b/getfedora.org/static/images/magazine.png deleted file mode 100644 index e9752ff..0000000 Binary files a/getfedora.org/static/images/magazine.png and /dev/null differ diff --git a/getfedora.org/static/images/mate.png b/getfedora.org/static/images/mate.png deleted file mode 100644 index 16b7569..0000000 Binary files a/getfedora.org/static/images/mate.png and /dev/null differ diff --git a/getfedora.org/static/images/monitor.png b/getfedora.org/static/images/monitor.png deleted file mode 100644 index 516f073..0000000 Binary files a/getfedora.org/static/images/monitor.png and /dev/null differ diff --git a/getfedora.org/static/images/panda-list.png b/getfedora.org/static/images/panda-list.png deleted file mode 100644 index 1195c2e..0000000 Binary files a/getfedora.org/static/images/panda-list.png and /dev/null differ diff --git a/getfedora.org/static/images/panda-question.png b/getfedora.org/static/images/panda-question.png deleted file mode 100644 index a366624..0000000 Binary files a/getfedora.org/static/images/panda-question.png and /dev/null differ diff --git a/getfedora.org/static/images/panda-wave.png b/getfedora.org/static/images/panda-wave.png deleted file mode 100644 index 9e6423e..0000000 Binary files a/getfedora.org/static/images/panda-wave.png and /dev/null differ diff --git a/getfedora.org/static/images/product-logos/sibling-logo-active-cloud.png b/getfedora.org/static/images/product-logos/sibling-logo-active-cloud.png deleted file mode 100644 index 09fd9a6..0000000 Binary files a/getfedora.org/static/images/product-logos/sibling-logo-active-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/product-logos/sibling-logo-active-server.png b/getfedora.org/static/images/product-logos/sibling-logo-active-server.png deleted file mode 100644 index 3447a4f..0000000 Binary files a/getfedora.org/static/images/product-logos/sibling-logo-active-server.png and /dev/null differ diff --git a/getfedora.org/static/images/product-logos/sibling-logo-inactive-cloud.png b/getfedora.org/static/images/product-logos/sibling-logo-inactive-cloud.png deleted file mode 100644 index 43dce7a..0000000 Binary files a/getfedora.org/static/images/product-logos/sibling-logo-inactive-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/product-logos/sibling-logo-inactive-server.png b/getfedora.org/static/images/product-logos/sibling-logo-inactive-server.png deleted file mode 100644 index 237b70a..0000000 Binary files a/getfedora.org/static/images/product-logos/sibling-logo-inactive-server.png and /dev/null differ diff --git a/getfedora.org/static/images/product-sprite.png b/getfedora.org/static/images/product-sprite.png deleted file mode 100644 index 37def90..0000000 Binary files a/getfedora.org/static/images/product-sprite.png and /dev/null differ diff --git a/getfedora.org/static/images/product-sprite.svg b/getfedora.org/static/images/product-sprite.svg deleted file mode 100644 index dc8d524..0000000 --- a/getfedora.org/static/images/product-sprite.svg +++ /dev/null @@ -1,1275 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CLOUD - - - - CLOUD - - - - SERVER - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SERVER - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WORKSTATION - - - - WORKSTATION - - diff --git a/getfedora.org/static/images/quotes-2users.png b/getfedora.org/static/images/quotes-2users.png deleted file mode 100644 index 9e96db0..0000000 Binary files a/getfedora.org/static/images/quotes-2users.png and /dev/null differ diff --git a/getfedora.org/static/images/redhat-logo.png b/getfedora.org/static/images/redhat-logo.png deleted file mode 100644 index 08dcdde..0000000 Binary files a/getfedora.org/static/images/redhat-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/01.png b/getfedora.org/static/images/schedule/01.png deleted file mode 100644 index dc6eec7..0000000 Binary files a/getfedora.org/static/images/schedule/01.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/02.png b/getfedora.org/static/images/schedule/02.png deleted file mode 100644 index 950bb2f..0000000 Binary files a/getfedora.org/static/images/schedule/02.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/03.png b/getfedora.org/static/images/schedule/03.png deleted file mode 100644 index be60f91..0000000 Binary files a/getfedora.org/static/images/schedule/03.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/04.png b/getfedora.org/static/images/schedule/04.png deleted file mode 100644 index e72616e..0000000 Binary files a/getfedora.org/static/images/schedule/04.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/05.png b/getfedora.org/static/images/schedule/05.png deleted file mode 100644 index 2bd723c..0000000 Binary files a/getfedora.org/static/images/schedule/05.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/06.png b/getfedora.org/static/images/schedule/06.png deleted file mode 100644 index 22c4a22..0000000 Binary files a/getfedora.org/static/images/schedule/06.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/07.png b/getfedora.org/static/images/schedule/07.png deleted file mode 100644 index 0a9196c..0000000 Binary files a/getfedora.org/static/images/schedule/07.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/08.png b/getfedora.org/static/images/schedule/08.png deleted file mode 100644 index 39ceeac..0000000 Binary files a/getfedora.org/static/images/schedule/08.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/09.png b/getfedora.org/static/images/schedule/09.png deleted file mode 100644 index 2f94333..0000000 Binary files a/getfedora.org/static/images/schedule/09.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/10.png b/getfedora.org/static/images/schedule/10.png deleted file mode 100644 index defb234..0000000 Binary files a/getfedora.org/static/images/schedule/10.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/11.png b/getfedora.org/static/images/schedule/11.png deleted file mode 100644 index d505e27..0000000 Binary files a/getfedora.org/static/images/schedule/11.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/12.png b/getfedora.org/static/images/schedule/12.png deleted file mode 100644 index 6edd9e0..0000000 Binary files a/getfedora.org/static/images/schedule/12.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/13.png b/getfedora.org/static/images/schedule/13.png deleted file mode 100644 index 0290845..0000000 Binary files a/getfedora.org/static/images/schedule/13.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/14.png b/getfedora.org/static/images/schedule/14.png deleted file mode 100644 index 0077d64..0000000 Binary files a/getfedora.org/static/images/schedule/14.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/15.png b/getfedora.org/static/images/schedule/15.png deleted file mode 100644 index ba04e19..0000000 Binary files a/getfedora.org/static/images/schedule/15.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/16.png b/getfedora.org/static/images/schedule/16.png deleted file mode 100644 index 65ed618..0000000 Binary files a/getfedora.org/static/images/schedule/16.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/17.png b/getfedora.org/static/images/schedule/17.png deleted file mode 100644 index 7093c1d..0000000 Binary files a/getfedora.org/static/images/schedule/17.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/18.png b/getfedora.org/static/images/schedule/18.png deleted file mode 100644 index 9efe516..0000000 Binary files a/getfedora.org/static/images/schedule/18.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/19.png b/getfedora.org/static/images/schedule/19.png deleted file mode 100644 index 25a6b44..0000000 Binary files a/getfedora.org/static/images/schedule/19.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/20.png b/getfedora.org/static/images/schedule/20.png deleted file mode 100644 index e9a9e2e..0000000 Binary files a/getfedora.org/static/images/schedule/20.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/21.png b/getfedora.org/static/images/schedule/21.png deleted file mode 100644 index cc53fbe..0000000 Binary files a/getfedora.org/static/images/schedule/21.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/22.png b/getfedora.org/static/images/schedule/22.png deleted file mode 100644 index c9aadec..0000000 Binary files a/getfedora.org/static/images/schedule/22.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/23.png b/getfedora.org/static/images/schedule/23.png deleted file mode 100644 index 077200e..0000000 Binary files a/getfedora.org/static/images/schedule/23.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/24.png b/getfedora.org/static/images/schedule/24.png deleted file mode 100644 index afd5f0e..0000000 Binary files a/getfedora.org/static/images/schedule/24.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/25.png b/getfedora.org/static/images/schedule/25.png deleted file mode 100644 index 684e692..0000000 Binary files a/getfedora.org/static/images/schedule/25.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/26.png b/getfedora.org/static/images/schedule/26.png deleted file mode 100644 index ee320c8..0000000 Binary files a/getfedora.org/static/images/schedule/26.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/27.png b/getfedora.org/static/images/schedule/27.png deleted file mode 100644 index 5c8b199..0000000 Binary files a/getfedora.org/static/images/schedule/27.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/28.png b/getfedora.org/static/images/schedule/28.png deleted file mode 100644 index 0fb4b2d..0000000 Binary files a/getfedora.org/static/images/schedule/28.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/29.png b/getfedora.org/static/images/schedule/29.png deleted file mode 100644 index 2c7c1db..0000000 Binary files a/getfedora.org/static/images/schedule/29.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/30.png b/getfedora.org/static/images/schedule/30.png deleted file mode 100644 index e107138..0000000 Binary files a/getfedora.org/static/images/schedule/30.png and /dev/null differ diff --git a/getfedora.org/static/images/schedule/31.png b/getfedora.org/static/images/schedule/31.png deleted file mode 100644 index 2247f69..0000000 Binary files a/getfedora.org/static/images/schedule/31.png and /dev/null differ diff --git a/getfedora.org/static/images/search.png b/getfedora.org/static/images/search.png deleted file mode 100644 index 9b58456..0000000 Binary files a/getfedora.org/static/images/search.png and /dev/null differ diff --git a/getfedora.org/static/images/search.svg b/getfedora.org/static/images/search.svg deleted file mode 100644 index bd28b5a..0000000 --- a/getfedora.org/static/images/search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/getfedora.org/static/images/server-header.png b/getfedora.org/static/images/server-header.png deleted file mode 100644 index 4aa5c78..0000000 Binary files a/getfedora.org/static/images/server-header.png and /dev/null differ diff --git a/getfedora.org/static/images/server-logo-main.png b/getfedora.org/static/images/server-logo-main.png deleted file mode 100644 index 0a03386..0000000 Binary files a/getfedora.org/static/images/server-logo-main.png and /dev/null differ diff --git a/getfedora.org/static/images/server-logo-next.png b/getfedora.org/static/images/server-logo-next.png deleted file mode 100644 index d662af6..0000000 Binary files a/getfedora.org/static/images/server-logo-next.png and /dev/null differ diff --git a/getfedora.org/static/images/server-logo.png b/getfedora.org/static/images/server-logo.png deleted file mode 100644 index 7437c23..0000000 Binary files a/getfedora.org/static/images/server-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/server-main.png b/getfedora.org/static/images/server-main.png deleted file mode 100644 index 186cf87..0000000 Binary files a/getfedora.org/static/images/server-main.png and /dev/null differ diff --git a/getfedora.org/static/images/server.jpg b/getfedora.org/static/images/server.jpg deleted file mode 100644 index 80e7a22..0000000 Binary files a/getfedora.org/static/images/server.jpg and /dev/null differ diff --git a/getfedora.org/static/images/server/dan-headshot.jpg b/getfedora.org/static/images/server/dan-headshot.jpg deleted file mode 100644 index 7ecd111..0000000 Binary files a/getfedora.org/static/images/server/dan-headshot.jpg and /dev/null differ diff --git a/getfedora.org/static/images/server/john-headshot.jpg b/getfedora.org/static/images/server/john-headshot.jpg deleted file mode 100644 index a2bd15b..0000000 Binary files a/getfedora.org/static/images/server/john-headshot.jpg and /dev/null differ diff --git a/getfedora.org/static/images/server/langdon-white.png b/getfedora.org/static/images/server/langdon-white.png deleted file mode 100644 index 4965c71..0000000 Binary files a/getfedora.org/static/images/server/langdon-white.png and /dev/null differ diff --git a/getfedora.org/static/images/server/modularity.png b/getfedora.org/static/images/server/modularity.png deleted file mode 100644 index dd86fad..0000000 Binary files a/getfedora.org/static/images/server/modularity.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-features-cockpit-bg.png b/getfedora.org/static/images/server/server-features-cockpit-bg.png deleted file mode 100644 index 6b59ffa..0000000 Binary files a/getfedora.org/static/images/server/server-features-cockpit-bg.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-features-cockpit.png b/getfedora.org/static/images/server/server-features-cockpit.png deleted file mode 100644 index 036be71..0000000 Binary files a/getfedora.org/static/images/server/server-features-cockpit.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-features-freeipa-bg.png b/getfedora.org/static/images/server/server-features-freeipa-bg.png deleted file mode 100644 index 5971157..0000000 Binary files a/getfedora.org/static/images/server/server-features-freeipa-bg.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-features-freeipa.png b/getfedora.org/static/images/server/server-features-freeipa.png deleted file mode 100644 index c9e45cd..0000000 Binary files a/getfedora.org/static/images/server/server-features-freeipa.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-features-openlmi.png b/getfedora.org/static/images/server/server-features-openlmi.png deleted file mode 100644 index ff1070d..0000000 Binary files a/getfedora.org/static/images/server/server-features-openlmi.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-features-rolekit.png b/getfedora.org/static/images/server/server-features-rolekit.png deleted file mode 100644 index 0095d1d..0000000 Binary files a/getfedora.org/static/images/server/server-features-rolekit.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-pattern.2.png b/getfedora.org/static/images/server/server-pattern.2.png deleted file mode 100644 index 9b64612..0000000 Binary files a/getfedora.org/static/images/server/server-pattern.2.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-pattern.3.png b/getfedora.org/static/images/server/server-pattern.3.png deleted file mode 100644 index dbbe6bb..0000000 Binary files a/getfedora.org/static/images/server/server-pattern.3.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-pattern.png b/getfedora.org/static/images/server/server-pattern.png deleted file mode 100644 index 3cd86e7..0000000 Binary files a/getfedora.org/static/images/server/server-pattern.png and /dev/null differ diff --git a/getfedora.org/static/images/server/server-splash.2.jpg b/getfedora.org/static/images/server/server-splash.2.jpg deleted file mode 100644 index 12446ee..0000000 Binary files a/getfedora.org/static/images/server/server-splash.2.jpg and /dev/null differ diff --git a/getfedora.org/static/images/server/server-splash.jpg b/getfedora.org/static/images/server/server-splash.jpg deleted file mode 100644 index db27386..0000000 Binary files a/getfedora.org/static/images/server/server-splash.jpg and /dev/null differ diff --git a/getfedora.org/static/images/slider-filler.png b/getfedora.org/static/images/slider-filler.png deleted file mode 100644 index 4bc2952..0000000 Binary files a/getfedora.org/static/images/slider-filler.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-atomic.png b/getfedora.org/static/images/smalllogo-color-atomic.png deleted file mode 100644 index 5061ef5..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-atomic.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-cloud.png b/getfedora.org/static/images/smalllogo-color-cloud.png deleted file mode 100644 index 7e88819..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-cloud@2x.png b/getfedora.org/static/images/smalllogo-color-cloud@2x.png deleted file mode 100644 index c404c22..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-cloud@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-server.png b/getfedora.org/static/images/smalllogo-color-server.png deleted file mode 100644 index 821b461..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-server.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-server@2x.png b/getfedora.org/static/images/smalllogo-color-server@2x.png deleted file mode 100644 index bfe29d4..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-server@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-workstation.png b/getfedora.org/static/images/smalllogo-color-workstation.png deleted file mode 100644 index 6443e5b..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-workstation.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-color-workstation@2x.png b/getfedora.org/static/images/smalllogo-color-workstation@2x.png deleted file mode 100644 index f6061cf..0000000 Binary files a/getfedora.org/static/images/smalllogo-color-workstation@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-atomic.png b/getfedora.org/static/images/smalllogo-grey-atomic.png deleted file mode 100644 index 0a637ea..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-atomic.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-cloud.png b/getfedora.org/static/images/smalllogo-grey-cloud.png deleted file mode 100644 index 119e8e2..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-cloud.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-cloud@2x.png b/getfedora.org/static/images/smalllogo-grey-cloud@2x.png deleted file mode 100644 index d014932..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-cloud@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-server.png b/getfedora.org/static/images/smalllogo-grey-server.png deleted file mode 100644 index 09f9678..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-server.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-server@2x.png b/getfedora.org/static/images/smalllogo-grey-server@2x.png deleted file mode 100644 index 01af0fa..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-server@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-workstation.png b/getfedora.org/static/images/smalllogo-grey-workstation.png deleted file mode 100644 index 171dbcb..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-workstation.png and /dev/null differ diff --git a/getfedora.org/static/images/smalllogo-grey-workstation@2x.png b/getfedora.org/static/images/smalllogo-grey-workstation@2x.png deleted file mode 100644 index 37dbbe7..0000000 Binary files a/getfedora.org/static/images/smalllogo-grey-workstation@2x.png and /dev/null differ diff --git a/getfedora.org/static/images/soas.png b/getfedora.org/static/images/soas.png deleted file mode 100644 index b1f6024..0000000 Binary files a/getfedora.org/static/images/soas.png and /dev/null differ diff --git a/getfedora.org/static/images/spins-logo.png b/getfedora.org/static/images/spins-logo.png deleted file mode 100644 index ebee9e2..0000000 Binary files a/getfedora.org/static/images/spins-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/arrival.jpg b/getfedora.org/static/images/sponsors/arrival.jpg deleted file mode 100644 index faf75e4..0000000 Binary files a/getfedora.org/static/images/sponsors/arrival.jpg and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/bodhost.png b/getfedora.org/static/images/sponsors/bodhost.png deleted file mode 100644 index 514b85a..0000000 Binary files a/getfedora.org/static/images/sponsors/bodhost.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/cdn77.png b/getfedora.org/static/images/sponsors/cdn77.png deleted file mode 100644 index 17678fd..0000000 Binary files a/getfedora.org/static/images/sponsors/cdn77.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/colocation-america-logo.png b/getfedora.org/static/images/sponsors/colocation-america-logo.png deleted file mode 100644 index 9afabc8..0000000 Binary files a/getfedora.org/static/images/sponsors/colocation-america-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/dedicatedsolutions.png b/getfedora.org/static/images/sponsors/dedicatedsolutions.png deleted file mode 100644 index 79ee22a..0000000 Binary files a/getfedora.org/static/images/sponsors/dedicatedsolutions.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/dell.gif b/getfedora.org/static/images/sponsors/dell.gif deleted file mode 100644 index 92c3c85..0000000 Binary files a/getfedora.org/static/images/sponsors/dell.gif and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/host1plus.png b/getfedora.org/static/images/sponsors/host1plus.png deleted file mode 100644 index a9f621f..0000000 Binary files a/getfedora.org/static/images/sponsors/host1plus.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/ibiblio.png b/getfedora.org/static/images/sponsors/ibiblio.png deleted file mode 100644 index 0bd791f..0000000 Binary files a/getfedora.org/static/images/sponsors/ibiblio.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/internetx.png b/getfedora.org/static/images/sponsors/internetx.png deleted file mode 100644 index 8f62576..0000000 Binary files a/getfedora.org/static/images/sponsors/internetx.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/open_source_lab.png b/getfedora.org/static/images/sponsors/open_source_lab.png deleted file mode 100644 index e2c61a4..0000000 Binary files a/getfedora.org/static/images/sponsors/open_source_lab.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/peer1.png b/getfedora.org/static/images/sponsors/peer1.png deleted file mode 100644 index ab1d291..0000000 Binary files a/getfedora.org/static/images/sponsors/peer1.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/proio.jpg b/getfedora.org/static/images/sponsors/proio.jpg deleted file mode 100644 index b6dc7d9..0000000 Binary files a/getfedora.org/static/images/sponsors/proio.jpg and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/redhat-community.png b/getfedora.org/static/images/sponsors/redhat-community.png deleted file mode 100644 index 011c9bb..0000000 Binary files a/getfedora.org/static/images/sponsors/redhat-community.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/redhat-community.png.old b/getfedora.org/static/images/sponsors/redhat-community.png.old deleted file mode 100644 index 263fb47..0000000 Binary files a/getfedora.org/static/images/sponsors/redhat-community.png.old and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/redhat-trans.png b/getfedora.org/static/images/sponsors/redhat-trans.png deleted file mode 100644 index c837a7f..0000000 Binary files a/getfedora.org/static/images/sponsors/redhat-trans.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/redhat.png b/getfedora.org/static/images/sponsors/redhat.png deleted file mode 100644 index 3f2cf1d..0000000 Binary files a/getfedora.org/static/images/sponsors/redhat.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/serverBeach.png b/getfedora.org/static/images/sponsors/serverBeach.png deleted file mode 100644 index 5ada051..0000000 Binary files a/getfedora.org/static/images/sponsors/serverBeach.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/sidebar/bodhost.png b/getfedora.org/static/images/sponsors/sidebar/bodhost.png deleted file mode 120000 index e0c6cc3..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/bodhost.png +++ /dev/null @@ -1 +0,0 @@ -../bodhost.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/sidebar/coloamerica.png b/getfedora.org/static/images/sponsors/sidebar/coloamerica.png deleted file mode 120000 index fa5bb57..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/coloamerica.png +++ /dev/null @@ -1 +0,0 @@ -../colocation-america-logo.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/sidebar/dedicatedsolutions.png b/getfedora.org/static/images/sponsors/sidebar/dedicatedsolutions.png deleted file mode 100644 index 6139bed..0000000 Binary files a/getfedora.org/static/images/sponsors/sidebar/dedicatedsolutions.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/sidebar/ibiblio.png b/getfedora.org/static/images/sponsors/sidebar/ibiblio.png deleted file mode 120000 index 0de904d..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/ibiblio.png +++ /dev/null @@ -1 +0,0 @@ -../ibiblio.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/sidebar/internetx.png b/getfedora.org/static/images/sponsors/sidebar/internetx.png deleted file mode 120000 index 7867968..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/internetx.png +++ /dev/null @@ -1 +0,0 @@ -../internetx.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/sidebar/osuosl.png b/getfedora.org/static/images/sponsors/sidebar/osuosl.png deleted file mode 120000 index 1713857..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/osuosl.png +++ /dev/null @@ -1 +0,0 @@ -../open_source_lab.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/sidebar/redhat.png b/getfedora.org/static/images/sponsors/sidebar/redhat.png deleted file mode 100644 index 8e25d08..0000000 Binary files a/getfedora.org/static/images/sponsors/sidebar/redhat.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/sidebar/telia.png b/getfedora.org/static/images/sponsors/sidebar/telia.png deleted file mode 120000 index 32910de..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/telia.png +++ /dev/null @@ -1 +0,0 @@ -../telia.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/sidebar/tummy.png b/getfedora.org/static/images/sponsors/sidebar/tummy.png deleted file mode 120000 index 334cc42..0000000 --- a/getfedora.org/static/images/sponsors/sidebar/tummy.png +++ /dev/null @@ -1 +0,0 @@ -../tummy.png \ No newline at end of file diff --git a/getfedora.org/static/images/sponsors/technomonk.png b/getfedora.org/static/images/sponsors/technomonk.png deleted file mode 100644 index d97aeba..0000000 Binary files a/getfedora.org/static/images/sponsors/technomonk.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/telia.png b/getfedora.org/static/images/sponsors/telia.png deleted file mode 100644 index 0120e38..0000000 Binary files a/getfedora.org/static/images/sponsors/telia.png and /dev/null differ diff --git a/getfedora.org/static/images/sponsors/tummy.png b/getfedora.org/static/images/sponsors/tummy.png deleted file mode 100644 index af4938b..0000000 Binary files a/getfedora.org/static/images/sponsors/tummy.png and /dev/null differ diff --git a/getfedora.org/static/images/support-bugs.png b/getfedora.org/static/images/support-bugs.png deleted file mode 100644 index 0fb08a3..0000000 Binary files a/getfedora.org/static/images/support-bugs.png and /dev/null differ diff --git a/getfedora.org/static/images/tut-placeholder.png b/getfedora.org/static/images/tut-placeholder.png deleted file mode 100644 index 6ca1aec..0000000 Binary files a/getfedora.org/static/images/tut-placeholder.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation-header.png b/getfedora.org/static/images/workstation-header.png deleted file mode 100644 index 7ba57de..0000000 Binary files a/getfedora.org/static/images/workstation-header.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation-logo-main.png b/getfedora.org/static/images/workstation-logo-main.png deleted file mode 100644 index 6df3253..0000000 Binary files a/getfedora.org/static/images/workstation-logo-main.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation-logo.png b/getfedora.org/static/images/workstation-logo.png deleted file mode 100644 index 73377c7..0000000 Binary files a/getfedora.org/static/images/workstation-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-boxes.png b/getfedora.org/static/images/workstation/workstation-features-boxes.png deleted file mode 100644 index 33b8998..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-boxes.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-copr.png b/getfedora.org/static/images/workstation/workstation-features-copr.png deleted file mode 100644 index 69f0172..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-copr.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-designer.jpg b/getfedora.org/static/images/workstation/workstation-features-designer.jpg deleted file mode 100644 index 3636069..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-designer.jpg and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-devassistant.jpg b/getfedora.org/static/images/workstation/workstation-features-devassistant.jpg deleted file mode 100644 index d4b53b2..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-devassistant.jpg and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-devassistant.png b/getfedora.org/static/images/workstation/workstation-features-devassistant.png deleted file mode 100644 index 3b0e1d5..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-devassistant.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-docker.png b/getfedora.org/static/images/workstation/workstation-features-docker.png deleted file mode 100644 index e9a682f..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-docker.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-gnome3.png b/getfedora.org/static/images/workstation/workstation-features-gnome3.png deleted file mode 100644 index 7170ffa..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-gnome3.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-nativeappdev.jpg b/getfedora.org/static/images/workstation/workstation-features-nativeappdev.jpg deleted file mode 100644 index c1ac9b4..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-nativeappdev.jpg and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-terminal.jpg b/getfedora.org/static/images/workstation/workstation-features-terminal.jpg deleted file mode 100644 index 4c4c169..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-terminal.jpg and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-features-user.jpg b/getfedora.org/static/images/workstation/workstation-features-user.jpg deleted file mode 100644 index cbdd872..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-features-user.jpg and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-pattern.2.png b/getfedora.org/static/images/workstation/workstation-pattern.2.png deleted file mode 100644 index 325c609..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-pattern.2.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-pattern.png b/getfedora.org/static/images/workstation/workstation-pattern.png deleted file mode 100644 index 9bda07d..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-pattern.png and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-splash.jpg b/getfedora.org/static/images/workstation/workstation-splash.jpg deleted file mode 100644 index ca91739..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-splash.jpg and /dev/null differ diff --git a/getfedora.org/static/images/workstation/workstation-testimonial.jpg b/getfedora.org/static/images/workstation/workstation-testimonial.jpg deleted file mode 100644 index 5d685ed..0000000 Binary files a/getfedora.org/static/images/workstation/workstation-testimonial.jpg and /dev/null differ diff --git a/getfedora.org/static/images/world_map.png b/getfedora.org/static/images/world_map.png deleted file mode 100644 index c3f9df8..0000000 Binary files a/getfedora.org/static/images/world_map.png and /dev/null differ diff --git a/getfedora.org/static/images/world_map.svg b/getfedora.org/static/images/world_map.svg deleted file mode 100644 index 54f68b8..0000000 --- a/getfedora.org/static/images/world_map.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/getfedora.org/static/images/ws-logo.png b/getfedora.org/static/images/ws-logo.png deleted file mode 100644 index b770cc3..0000000 Binary files a/getfedora.org/static/images/ws-logo.png and /dev/null differ diff --git a/getfedora.org/static/images/ws-main.png b/getfedora.org/static/images/ws-main.png deleted file mode 100644 index ecb1415..0000000 Binary files a/getfedora.org/static/images/ws-main.png and /dev/null differ diff --git a/getfedora.org/static/images/xfce.png b/getfedora.org/static/images/xfce.png deleted file mode 100644 index d285434..0000000 Binary files a/getfedora.org/static/images/xfce.png and /dev/null differ diff --git a/getfedora.org/static/js/banner.js b/getfedora.org/static/js/banner.js deleted file mode 100644 index 0e4bf4f..0000000 --- a/getfedora.org/static/js/banner.js +++ /dev/null @@ -1,30 +0,0 @@ -var banners = [ -// Image URL, -// Title attribute -// Target URL -// Weight - [ - "/static/images/banners/f19alpha.png", - "Fedora 19 Schrödinger\'s Cat Alpha is here!", - "https://fedoraproject.org/get-prerelease", - 5 - ], - [ - "/static/images/banners/f19release.png", - "Fedora 19 Schrödinger\'s Cat is here!", - "https://fedoraproject.org/get-fedora", - 0 - ], - [ - "/static/images/banners/picturebanner-envelope-1.png", - "Fedora Picture Book - Now accepting submissions", - "https://fedoraproject.org/wiki/Category:Picture_book", - 0 - ], - [ - "/static/images/banners/super-packager.png", - "Fedora Community", - "https://apps.fedoraproject.org/packages/", - 0 - ] -]; diff --git a/getfedora.org/static/js/bootstrap.js b/getfedora.org/static/js/bootstrap.js deleted file mode 100644 index 8ae571b..0000000 --- a/getfedora.org/static/js/bootstrap.js +++ /dev/null @@ -1,1951 +0,0 @@ -/*! - * Bootstrap v3.1.1 (http://getbootstrap.com) - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') } - -/* ======================================================================== - * Bootstrap: transition.js v3.1.1 - * http://getbootstrap.com/javascript/#transitions - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) - // ============================================================ - - function transitionEnd() { - var el = document.createElement('bootstrap') - - var transEndEventNames = { - 'WebkitTransition' : 'webkitTransitionEnd', - 'MozTransition' : 'transitionend', - 'OTransition' : 'oTransitionEnd otransitionend', - 'transition' : 'transitionend' - } - - for (var name in transEndEventNames) { - if (el.style[name] !== undefined) { - return { end: transEndEventNames[name] } - } - } - - return false // explicit for ie8 ( ._.) - } - - // http://blog.alexmaccaw.com/css-transitions - $.fn.emulateTransitionEnd = function (duration) { - var called = false, $el = this - $(this).one($.support.transition.end, function () { called = true }) - var callback = function () { if (!called) $($el).trigger($.support.transition.end) } - setTimeout(callback, duration) - return this - } - - $(function () { - $.support.transition = transitionEnd() - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: alert.js v3.1.1 - * http://getbootstrap.com/javascript/#alerts - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // ALERT CLASS DEFINITION - // ====================== - - var dismiss = '[data-dismiss="alert"]' - var Alert = function (el) { - $(el).on('click', dismiss, this.close) - } - - Alert.prototype.close = function (e) { - var $this = $(this) - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = $(selector) - - if (e) e.preventDefault() - - if (!$parent.length) { - $parent = $this.hasClass('alert') ? $this : $this.parent() - } - - $parent.trigger(e = $.Event('close.bs.alert')) - - if (e.isDefaultPrevented()) return - - $parent.removeClass('in') - - function removeElement() { - $parent.trigger('closed.bs.alert').remove() - } - - $.support.transition && $parent.hasClass('fade') ? - $parent - .one($.support.transition.end, removeElement) - .emulateTransitionEnd(150) : - removeElement() - } - - - // ALERT PLUGIN DEFINITION - // ======================= - - var old = $.fn.alert - - $.fn.alert = function (option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.alert') - - if (!data) $this.data('bs.alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - $.fn.alert.Constructor = Alert - - - // ALERT NO CONFLICT - // ================= - - $.fn.alert.noConflict = function () { - $.fn.alert = old - return this - } - - - // ALERT DATA-API - // ============== - - $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: button.js v3.1.1 - * http://getbootstrap.com/javascript/#buttons - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // BUTTON PUBLIC CLASS DEFINITION - // ============================== - - var Button = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Button.DEFAULTS, options) - this.isLoading = false - } - - Button.DEFAULTS = { - loadingText: 'loading...' - } - - Button.prototype.setState = function (state) { - var d = 'disabled' - var $el = this.$element - var val = $el.is('input') ? 'val' : 'html' - var data = $el.data() - - state = state + 'Text' - - if (!data.resetText) $el.data('resetText', $el[val]()) - - $el[val](data[state] || this.options[state]) - - // push to event loop to allow forms to submit - setTimeout($.proxy(function () { - if (state == 'loadingText') { - this.isLoading = true - $el.addClass(d).attr(d, d) - } else if (this.isLoading) { - this.isLoading = false - $el.removeClass(d).removeAttr(d) - } - }, this), 0) - } - - Button.prototype.toggle = function () { - var changed = true - var $parent = this.$element.closest('[data-toggle="buttons"]') - - if ($parent.length) { - var $input = this.$element.find('input') - if ($input.prop('type') == 'radio') { - if ($input.prop('checked') && this.$element.hasClass('active')) changed = false - else $parent.find('.active').removeClass('active') - } - if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') - } - - if (changed) this.$element.toggleClass('active') - } - - - // BUTTON PLUGIN DEFINITION - // ======================== - - var old = $.fn.button - - $.fn.button = function (option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.button') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.button', (data = new Button(this, options))) - - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - $.fn.button.Constructor = Button - - - // BUTTON NO CONFLICT - // ================== - - $.fn.button.noConflict = function () { - $.fn.button = old - return this - } - - - // BUTTON DATA-API - // =============== - - $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) { - var $btn = $(e.target) - if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') - $btn.button('toggle') - e.preventDefault() - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: carousel.js v3.1.1 - * http://getbootstrap.com/javascript/#carousel - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CAROUSEL CLASS DEFINITION - // ========================= - - var Carousel = function (element, options) { - this.$element = $(element) - this.$indicators = this.$element.find('.carousel-indicators') - this.options = options - this.paused = - this.sliding = - this.interval = - this.$active = - this.$items = null - - this.options.pause == 'hover' && this.$element - .on('mouseenter', $.proxy(this.pause, this)) - .on('mouseleave', $.proxy(this.cycle, this)) - } - - Carousel.DEFAULTS = { - interval: 5000, - pause: 'hover', - wrap: true - } - - Carousel.prototype.cycle = function (e) { - e || (this.paused = false) - - this.interval && clearInterval(this.interval) - - this.options.interval - && !this.paused - && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) - - return this - } - - Carousel.prototype.getActiveIndex = function () { - this.$active = this.$element.find('.item.active') - this.$items = this.$active.parent().children() - - return this.$items.index(this.$active) - } - - Carousel.prototype.to = function (pos) { - var that = this - var activeIndex = this.getActiveIndex() - - if (pos > (this.$items.length - 1) || pos < 0) return - - if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) - if (activeIndex == pos) return this.pause().cycle() - - return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) - } - - Carousel.prototype.pause = function (e) { - e || (this.paused = true) - - if (this.$element.find('.next, .prev').length && $.support.transition) { - this.$element.trigger($.support.transition.end) - this.cycle(true) - } - - this.interval = clearInterval(this.interval) - - return this - } - - Carousel.prototype.next = function () { - if (this.sliding) return - return this.slide('next') - } - - Carousel.prototype.prev = function () { - if (this.sliding) return - return this.slide('prev') - } - - Carousel.prototype.slide = function (type, next) { - var $active = this.$element.find('.item.active') - var $next = next || $active[type]() - var isCycling = this.interval - var direction = type == 'next' ? 'left' : 'right' - var fallback = type == 'next' ? 'first' : 'last' - var that = this - - if (!$next.length) { - if (!this.options.wrap) return - $next = this.$element.find('.item')[fallback]() - } - - if ($next.hasClass('active')) return this.sliding = false - - var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction }) - this.$element.trigger(e) - if (e.isDefaultPrevented()) return - - this.sliding = true - - isCycling && this.pause() - - if (this.$indicators.length) { - this.$indicators.find('.active').removeClass('active') - this.$element.one('slid.bs.carousel', function () { - var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()]) - $nextIndicator && $nextIndicator.addClass('active') - }) - } - - if ($.support.transition && this.$element.hasClass('slide')) { - $next.addClass(type) - $next[0].offsetWidth // force reflow - $active.addClass(direction) - $next.addClass(direction) - $active - .one($.support.transition.end, function () { - $next.removeClass([type, direction].join(' ')).addClass('active') - $active.removeClass(['active', direction].join(' ')) - that.sliding = false - setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0) - }) - .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000) - } else { - $active.removeClass('active') - $next.addClass('active') - this.sliding = false - this.$element.trigger('slid.bs.carousel') - } - - isCycling && this.cycle() - - return this - } - - - // CAROUSEL PLUGIN DEFINITION - // ========================== - - var old = $.fn.carousel - - $.fn.carousel = function (option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.carousel') - var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) - var action = typeof option == 'string' ? option : options.slide - - if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) - if (typeof option == 'number') data.to(option) - else if (action) data[action]() - else if (options.interval) data.pause().cycle() - }) - } - - $.fn.carousel.Constructor = Carousel - - - // CAROUSEL NO CONFLICT - // ==================== - - $.fn.carousel.noConflict = function () { - $.fn.carousel = old - return this - } - - - // CAROUSEL DATA-API - // ================= - - $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { - var $this = $(this), href - var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 - var options = $.extend({}, $target.data(), $this.data()) - var slideIndex = $this.attr('data-slide-to') - if (slideIndex) options.interval = false - - $target.carousel(options) - - if (slideIndex = $this.attr('data-slide-to')) { - $target.data('bs.carousel').to(slideIndex) - } - - e.preventDefault() - }) - - $(window).on('load', function () { - $('[data-ride="carousel"]').each(function () { - var $carousel = $(this) - $carousel.carousel($carousel.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: collapse.js v3.1.1 - * http://getbootstrap.com/javascript/#collapse - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // COLLAPSE PUBLIC CLASS DEFINITION - // ================================ - - var Collapse = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Collapse.DEFAULTS, options) - this.transitioning = null - - if (this.options.parent) this.$parent = $(this.options.parent) - if (this.options.toggle) this.toggle() - } - - Collapse.DEFAULTS = { - toggle: true - } - - Collapse.prototype.dimension = function () { - var hasWidth = this.$element.hasClass('width') - return hasWidth ? 'width' : 'height' - } - - Collapse.prototype.show = function () { - if (this.transitioning || this.$element.hasClass('in')) return - - var startEvent = $.Event('show.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - var actives = this.$parent && this.$parent.find('> .panel > .in') - - if (actives && actives.length) { - var hasData = actives.data('bs.collapse') - if (hasData && hasData.transitioning) return - actives.collapse('hide') - hasData || actives.data('bs.collapse', null) - } - - var dimension = this.dimension() - - this.$element - .removeClass('collapse') - .addClass('collapsing') - [dimension](0) - - this.transitioning = 1 - - var complete = function () { - this.$element - .removeClass('collapsing') - .addClass('collapse in') - [dimension]('auto') - this.transitioning = 0 - this.$element.trigger('shown.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - var scrollSize = $.camelCase(['scroll', dimension].join('-')) - - this.$element - .one($.support.transition.end, $.proxy(complete, this)) - .emulateTransitionEnd(350) - [dimension](this.$element[0][scrollSize]) - } - - Collapse.prototype.hide = function () { - if (this.transitioning || !this.$element.hasClass('in')) return - - var startEvent = $.Event('hide.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - var dimension = this.dimension() - - this.$element - [dimension](this.$element[dimension]()) - [0].offsetHeight - - this.$element - .addClass('collapsing') - .removeClass('collapse') - .removeClass('in') - - this.transitioning = 1 - - var complete = function () { - this.transitioning = 0 - this.$element - .trigger('hidden.bs.collapse') - .removeClass('collapsing') - .addClass('collapse') - } - - if (!$.support.transition) return complete.call(this) - - this.$element - [dimension](0) - .one($.support.transition.end, $.proxy(complete, this)) - .emulateTransitionEnd(350) - } - - Collapse.prototype.toggle = function () { - this[this.$element.hasClass('in') ? 'hide' : 'show']() - } - - - // COLLAPSE PLUGIN DEFINITION - // ========================== - - var old = $.fn.collapse - - $.fn.collapse = function (option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.collapse') - var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data && options.toggle && option == 'show') option = !option - if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - $.fn.collapse.Constructor = Collapse - - - // COLLAPSE NO CONFLICT - // ==================== - - $.fn.collapse.noConflict = function () { - $.fn.collapse = old - return this - } - - - // COLLAPSE DATA-API - // ================= - - $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) { - var $this = $(this), href - var target = $this.attr('data-target') - || e.preventDefault() - || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 - var $target = $(target) - var data = $target.data('bs.collapse') - var option = data ? 'toggle' : $this.data() - var parent = $this.attr('data-parent') - var $parent = parent && $(parent) - - if (!data || !data.transitioning) { - if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed') - $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed') - } - - $target.collapse(option) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: dropdown.js v3.1.1 - * http://getbootstrap.com/javascript/#dropdowns - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // DROPDOWN CLASS DEFINITION - // ========================= - - var backdrop = '.dropdown-backdrop' - var toggle = '[data-toggle=dropdown]' - var Dropdown = function (element) { - $(element).on('click.bs.dropdown', this.toggle) - } - - Dropdown.prototype.toggle = function (e) { - var $this = $(this) - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - clearMenus() - - if (!isActive) { - if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { - // if mobile we use a backdrop because click events don't delegate - $('